加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

中国天气网天气预报API接口城市代码,XML格式,数据具体到县、区

发布时间:2020-12-16 05:06:40 所属栏目:百科 来源:网络整理
导读:http://blog.csdn.net/lun379292733/article/details/17339271 说到开发天气预报,就需要找一个开放接口了,接口有很多,不过个人觉得,中国天气网的数据比较准确,而且也有权威性。访问地址如:http://m.weather.com.cn/data/101010100.html,这是北京的天

http://blog.csdn.net/lun379292733/article/details/17339271

说到开发天气预报,就需要找一个开放接口了,接口有很多,不过个人觉得,中国天气网的数据比较准确,而且也有权威性。访问地址如:http://m.weather.com.cn/data/101010100.html,这是北京的天气URL,其中101010100就是城市代码了,比如西安的天气URL为:http://m.weather.com.cn/data/101110101.html,那么现在主要的任务就是怎样获取这些城市的城市代码了,本人自己写了个小程序,解析了中央气象台返回来的数据,并保存为XML格式,数据具体到县、区级别,供大家参考,具体如下:

<?xml version="1.0" encoding="UTF-8"?>

<China> <province id="01" name="北京"> <city id="0101" name="北京"> <county id="010101" name="北京" weatherCode="101010100"/> <county id="010102" name="海淀" weatherCode="101010200"/> <county id="010103" name="朝阳" weatherCode="101010300"/> <county id="010104" name="顺义" weatherCode="101010400"/> <county id="010105" name="怀柔" weatherCode="101010500"/> <county id="010106" name="通州" weatherCode="101010600"/> <county id="010107" name="昌平" weatherCode="101010700"/> <county id="010108" name="延庆" weatherCode="101010800"/> <county id="010109" name="丰台" weatherCode="101010900"/> <county id="010110" name="石景山" weatherCode="101011000"/> <county id="010111" name="大兴" weatherCode="101011100"/> <county id="010112" name="房山" weatherCode="101011200"/> <county id="010113" name="密云" weatherCode="101011300"/> <county id="010114" name="门头沟" weatherCode="101011400"/> <county id="010115" name="平谷" weatherCode="101011500"/> </city> </province> <province id="02" name="上海"> <city id="0201" name="上海"> <county id="020101" name="上海" weatherCode="101020100"/> <county id="020102" name="闵行" weatherCode="101020200"/> <county id="020103" name="宝山" weatherCode="101020300"/> <county id="020104" name="嘉定" weatherCode="101020500"/> <county id="020105" name="浦东南汇" weatherCode="101020600"/> <county id="020106" name="金山" weatherCode="101020700"/> <county id="020107" name="青浦" weatherCode="101020800"/> <county id="020108" name="松江" weatherCode="101020900"/> <county id="020109" name="奉贤" weatherCode="101021000"/> <county id="020110" name="崇明" weatherCode="101021100"/> <county id="020111" name="徐家汇" weatherCode="101021200"/> <county id="020112" name="浦东" weatherCode="101021300"/> </city> </province> <province id="03" name="天津"> <city id="0301" name="天津"> <county id="030101" name="天津" weatherCode="101030100"/> <county id="030102" name="武清" weatherCode="101030200"/> <county id="030103" name="宝坻" weatherCode="101030300"/> <county id="030104" name="东丽" weatherCode="101030400"/> <county id="030105" name="西青" weatherCode="101030500"/> <county id="030106" name="北辰" weatherCode="101030600"/> <county id="030107" name="宁河" weatherCode="101030700"/> <county id="030108" name="汉沽" weatherCode="101030800"/> <county id="030109" name="静海" weatherCode="101030900"/> <county id="030110" name="津南" weatherCode="101031000"/> <county id="030111" name="塘沽" weatherCode="101031100"/> <county id="030112" name="大港" weatherCode="101031200"/> <county id="030113" name="蓟县" weatherCode="101031400"/> </city> </province> <province id="04" name="重庆"> <city id="0401" name="重庆"> <county id="040101" name="重庆" weatherCode="101040100"/> <county id="040102" name="永川" weatherCode="101040200"/> <county id="040103" name="合川" weatherCode="101040300"/> <county id="040104" name="南川" weatherCode="101040400"/> <county id="040105" name="江津" weatherCode="101040500"/> <county id="040106" name="万盛" weatherCode="101040600"/> <county id="040107" name="渝北" weatherCode="101040700"/> <county id="040108" name="北碚" weatherCode="101040800"/> <county id="040109" name="巴南" weatherCode="101040900"/> <county id="040110" name="长寿" weatherCode="101041000"/> <county id="040111" name="黔江" weatherCode="101041100"/> <county id="040112" name="万州" weatherCode="101041300"/> <county id="040113" name="涪陵" weatherCode="101041400"/> <county id="040114" name="开县" weatherCode="101041500"/> <county id="040115" name="城口" weatherCode="101041600"/> <county id="040116" name="云阳" weatherCode="101041700"/> <county id="040117" name="巫溪" weatherCode="101041800"/> <county id="040118" name="奉节" weatherCode="101041900"/> <county id="040119" name="巫山" weatherCode="101042000"/> <county id="040120" name="潼南" weatherCode="101042100"/> <county id="040121" name="垫江" weatherCode="101042200"/> <county id="040122" name="梁平" weatherCode="101042300"/> <county id="040123" name="忠县" weatherCode="101042400"/> <county id="040124" name="石柱" weatherCode="101042500"/> <county id="040125" name="大足" weatherCode="101042600"/> <county id="040126" name="荣昌" weatherCode="101042700"/> <county id="040127" name="铜梁" weatherCode="101042800"/> <county id="040128" name="璧山" weatherCode="101042900"/> <county id="040129" name="丰都" weatherCode="101043000"/> <county id="040130" name="武隆" weatherCode="101043100"/> <county id="040131" name="彭水" weatherCode="101043200"/> <county id="040132" name="綦江" weatherCode="101043300"/> <county id="040133" name="酉阳" weatherCode="101043400"/> <county id="040134" name="秀山" weatherCode="101043600"/> </city> </province> <province id="05" name="黑龙江"> <city id="0501" name="哈尔滨"> <county id="050101" name="哈尔滨" weatherCode="101050101"/> <county id="050102" name="双城" weatherCode="101050102"/> <county id="050103" name="呼兰" weatherCode="101050103"/> <county id="050104" name="阿城" weatherCode="101050104"/> <county id="050105" name="宾县" weatherCode="101050105"/> <county id="050106" name="依兰" weatherCode="101050106"/> <county id="050107" name="巴彦" weatherCode="101050107"/> <county id="050108" name="通河" weatherCode="101050108"/> <county id="050109" name="方正" weatherCode="101050109"/> <county id="050110" name="延寿" weatherCode="101050110"/> <county id="050111" name="尚志" weatherCode="101050111"/> <county id="050112" name="五常" weatherCode="101050112"/> <county id="050113" name="木兰" weatherCode="101050113"/> </city> <city id="0502" name="齐齐哈尔"> <county id="050201" name="齐齐哈尔" weatherCode="101050201"/> <county id="050202" name="讷河" weatherCode="101050202"/> <county id="050203" name="龙江" weatherCode="101050203"/> <county id="050204" name="甘南" weatherCode="101050204"/> <county id="050205" name="富裕" weatherCode="101050205"/> <county id="050206" name="依安" weatherCode="101050206"/> <county id="050207" name="拜泉" weatherCode="101050207"/> <county id="050208" name="克山" weatherCode="101050208"/> <county id="050209" name="克东" weatherCode="101050209"/> <county id="050210" name="泰来" weatherCode="101050210"/> </city> <city id="0503" name="牡丹江"> <county id="050301" name="牡丹江" weatherCode="101050301"/> <county id="050302" name="海林" weatherCode="101050302"/> <county id="050303" name="穆棱" weatherCode="101050303"/> <county id="050304" name="林口" weatherCode="101050304"/> <county id="050305" name="绥芬河" weatherCode="101050305"/> <county id="050306" name="宁安" weatherCode="101050306"/> <county id="050307" name="东宁" weatherCode="101050307"/> </city> <city id="0504" name="佳木斯"> <county id="050401" name="佳木斯" weatherCode="101050401"/> <county id="050402" name="汤原" weatherCode="101050402"/> <county id="050403" name="抚远" weatherCode="101050403"/> <county id="050404" name="桦川" weatherCode="101050404"/> <county id="050405" name="桦南" weatherCode="101050405"/> <county id="050406" name="同江" weatherCode="101050406"/> <county id="050407" name="富锦" weatherCode="101050407"/> </city> <city id="0505" name="绥化"> <county id="050501" name="绥化" weatherCode="101050501"/> <county id="050502" name="肇东" weatherCode="101050502"/> <county id="050503" name="安达" weatherCode="101050503"/> <county id="050504" name="海伦" weatherCode="101050504"/> <county id="050505" name="明水" weatherCode="101050505"/> <county id="050506" name="望奎" weatherCode="101050506"/> <county id="050507" name="兰西" weatherCode="101050507"/> <county id="050508" name="青冈" weatherCode="101050508"/> <county id="050509" name="庆安" weatherCode="101050509"/> <county id="050510" name="绥棱" weatherCode="101050510"/> </city> <city id="0506" name="黑河"> <county id="050601" name="黑河" weatherCode="101050601"/> <county id="050602" name="嫩江" weatherCode="101050602"/> <county id="050603" name="孙吴" weatherCode="101050603"/> <county id="050604" name="逊克" weatherCode="101050604"/> <county id="050605" name="五大连池" weatherCode="101050605"/> <county id="050606" name="北安" weatherCode="101050606"/> </city> <city id="0507" name="大兴安岭"> <county id="050701" name="大兴安岭" weatherCode="101050701"/> <county id="050702" name="塔河" weatherCode="101050702"/> <county id="050703" name="漠河" weatherCode="101050703"/> <county id="050704" name="呼玛" weatherCode="101050704"/> <county id="050705" name="呼中" weatherCode="101050705"/> <county id="050706" name="新林" weatherCode="101050706"/> <county id="050707" name="加格达奇" weatherCode="101050708"/> </city> <city id="0508" name="伊春"> <county id="050801" name="伊春" weatherCode="101050801"/> <county id="050802" name="乌伊岭" weatherCode="101050802"/> <county id="050803" name="五营" weatherCode="101050803"/> <county id="050804" name="铁力" weatherCode="101050804"/> <county id="050805" name="嘉荫" weatherCode="101050805"/> </city> <city id="0509" name="大庆"> <county id="050901" name="大庆" weatherCode="101050901"/> <county id="050902" name="林甸" weatherCode="101050902"/> <county id="050903" name="肇州" weatherCode="101050903"/> <county id="050904" name="肇源" weatherCode="101050904"/> <county id="050905" name="杜尔伯特" weatherCode="101050905"/> </city> <city id="0510" name="七台河"> <county id="051001" name="七台河" weatherCode="101051002"/> <county id="051002" name="勃利" weatherCode="101051003"/> </city> <city id="0511" name="鸡西"> <county id="051101" name="鸡西" weatherCode="101051101"/> <county id="051102" name="虎林" weatherCode="101051102"/> <county id="051103" name="密山" weatherCode="101051103"/> <county id="051104" name="鸡东" weatherCode="101051104"/> </city> <city id="0512" name="鹤岗"> <county id="051201" name="鹤岗" weatherCode="101051201"/> <county id="051202" name="绥滨" weatherCode="101051202"/> <county id="051203" name="萝北" weatherCode="101051203"/> </city> <city id="0513" name="双鸭山"> <county id="051301" name="双鸭山" weatherCode="101051301"/> <county id="051302" name="集贤" weatherCode="101051302"/> <county id="051303" name="宝清" weatherCode="101051303"/> <county id="051304" name="饶河" weatherCode="101051304"/> <county id="051305" name="友谊" weatherCode="101051305"/> </city> </province> <province id="06" name="吉林"> <city id="0601" name="长春"> <county id="060101" name="长春" weatherCode="101060101"/> <county id="060102" name="农安" weatherCode="101060102"/> <county id="060103" name="德惠" weatherCode="101060103"/> <county id="060104" name="九台" weatherCode="101060104"/> <county id="060105" name="榆树" weatherCode="101060105"/> <county id="060106" name="双阳" weatherCode="101060106"/> </city> <city id="0602" name="吉林"> <county id="060201" name="吉林" weatherCode="101060201"/> <county id="060202" name="舒兰" weatherCode="101060202"/> <county id="060203" name="永吉" weatherCode="101060203"/> <county id="060204" name="蛟河" weatherCode="101060204"/> <county id="060205" name="磐石" weatherCode="101060205"/> <county id="060206" name="桦甸" weatherCode="101060206"/> </city> <city id="0603" name="延边"> <county id="060301" name="延吉" weatherCode="101060301"/> <county id="060302" name="敦化" weatherCode="101060302"/> <county id="060303" name="安图" weatherCode="101060303"/> <county id="060304" name="汪清" weatherCode="101060304"/> <county id="060305" name="和龙" weatherCode="101060305"/> <county id="060306" name="龙井" weatherCode="101060307"/> <county id="060307" name="珲春" weatherCode="101060308"/> <county id="060308" name="图们" weatherCode="101060309"/> </city> <city id="0604" name="四平"> <county id="060401" name="四平" weatherCode="101060401"/> <county id="060402" name="双辽" weatherCode="101060402"/> <county id="060403" name="梨树" weatherCode="101060403"/> <county id="060404" name="公主岭" weatherCode="101060404"/> <county id="060405" name="伊通" weatherCode="101060405"/> </city> <city id="0605" name="通化"> <county id="060501" name="通化" weatherCode="101060501"/> <county id="060502" name="梅河口" weatherCode="101060502"/> <county id="060503" name="柳河" weatherCode="101060503"/> <county id="060504" name="辉南" weatherCode="101060504"/> <county id="060505" name="集安" weatherCode="101060505"/> <county id="060506" name="通化县" weatherCode="101060506"/> </city> <city id="0606" name="白城"> <county id="060601" name="白城" weatherCode="101060601"/> <county id="060602" name="洮南" weatherCode="101060602"/> <county id="060603" name="大安" weatherCode="101060603"/> <county id="060604" name="镇赉" weatherCode="101060604"/> <county id="060605" name="通榆" weatherCode="101060605"/> </city> <city id="0607" name="辽源"> <county id="060701" name="辽源" weatherCode="101060701"/> <county id="060702" name="东丰" weatherCode="101060702"/> <county id="060703" name="东辽" weatherCode="101060703"/> </city> <city id="0608" name="松原"> <county id="060801" name="松原" weatherCode="101060801"/> <county id="060802" name="乾安" weatherCode="101060802"/> <county id="060803" name="前郭" weatherCode="101060803"/> <county id="060804" name="长岭" weatherCode="101060804"/> <county id="060805" name="扶余" weatherCode="101060805"/> </city> <city id="0609" name="白山"> <county id="060901" name="白山" weatherCode="101060901"/> <county id="060902" name="靖宇" weatherCode="101060902"/> <county id="060903" name="临江" weatherCode="101060903"/> <county id="060904" name="东岗" weatherCode="101060904"/> <county id="060905" name="长白" weatherCode="101060905"/> <county id="060906" name="抚松" weatherCode="101060906"/> <county id="060907" name="江源" weatherCode="101060907"/> </city> </province> <province id="07" name="辽宁"> <city id="0701" name="沈阳"> <county id="070101" name="沈阳" weatherCode="101070101"/> <county id="070102" name="辽中" weatherCode="101070103"/> <county id="070103" name="康平" weatherCode="101070104"/> <county id="070104" name="法库" weatherCode="101070105"/> <county id="070105" name="新民" weatherCode="101070106"/> </city> <city id="0702" name="大连"> <county id="070201" name="大连" weatherCode="101070201"/> <county id="070202" name="瓦房店" weatherCode="101070202"/> <county id="070203" name="金州" weatherCode="101070203"/> <county id="070204" name="普兰店" weatherCode="101070204"/> <county id="070205" name="旅顺" weatherCode="101070205"/> <county id="070206" name="长海" weatherCode="101070206"/> <county id="070207" name="庄河" weatherCode="101070207"/> </city> <city id="0703" name="鞍山"> <county id="070301" name="鞍山" weatherCode="101070301"/> <county id="070302" name="台安" weatherCode="101070302"/> <county id="070303" name="岫岩" weatherCode="101070303"/> <county id="070304" name="海城" weatherCode="101070304"/> </city> <city id="0704" name="抚顺"> <county id="070401" name="抚顺" weatherCode="101070401"/> <county id="070402" name="新宾" weatherCode="101070402"/> <county id="070403" name="清原" weatherCode="101070403"/> <county id="070404" name="章党" weatherCode="101070404"/> </city> <city id="0705" name="本溪"> <county id="070501" name="本溪" weatherCode="101070501"/> <county id="070502" name="本溪县" weatherCode="101070502"/> <county id="070503" name="桓仁" weatherCode="101070504"/> </city> <city id="0706" name="丹东"> <county id="070601" name="丹东" weatherCode="101070601"/> <county id="070602" name="凤城" weatherCode="101070602"/> <county id="070603" name="宽甸" weatherCode="101070603"/> <county id="070604" name="东港" weatherCode="101070604"/> </city> <city id="0707" name="锦州"> <county id="070701" name="锦州" weatherCode="101070701"/> <county id="070702" name="凌海" weatherCode="101070702"/> <county id="070703" name="义县" weatherCode="101070704"/> <county id="070704" name="黑山" weatherCode="101070705"/> <county id="070705" name="北镇" weatherCode="101070706"/> </city> <city id="0708" name="营口"> <county id="070801" name="营口" weatherCode="101070801"/> <county id="070802" name="大石桥" weatherCode="101070802"/> <county id="070803" name="盖州" weatherCode="101070803"/> </city> <city id="0709" name="阜新"> <county id="070901" name="阜新" weatherCode="101070901"/> <county id="070902" name="彰武" weatherCode="101070902"/> </city> <city id="0710" name="辽阳"> <county id="071001" name="辽阳" weatherCode="101071001"/> <county id="071002" name="辽阳县" weatherCode="101071002"/> <county id="071003" name="灯塔" weatherCode="101071003"/> <county id="071004" name="弓长岭" weatherCode="101071004"/> </city> <city id="0711" name="铁岭"> <county id="071101" name="铁岭" weatherCode="101071101"/> <county id="071102" name="开原" weatherCode="101071102"/> <county id="071103" name="昌图" weatherCode="101071103"/> <county id="071104" name="西丰" weatherCode="101071104"/> <county id="071105" name="调兵山" weatherCode="101071105"/> </city> <city id="0712" name="朝阳"> <county id="071201" name="朝阳" weatherCode="101071201"/> <county id="071202" name="凌源" weatherCode="101071203"/> <county id="071203" name="喀左" weatherCode="101071204"/> <county id="071204" name="北票" weatherCode="101071205"/> <county id="071205" name="建平县" weatherCode="101071207"/> </city> <city id="0713" name="盘锦"> <county id="071301" name="盘锦" weatherCode="101071301"/> <county id="071302" name="大洼" weatherCode="101071302"/> <county id="071303" name="盘山" weatherCode="101071303"/> </city> <city id="0714" name="葫芦岛"> <county id="071401" name="葫芦岛" weatherCode="101071401"/> <county id="071402" name="建昌" weatherCode="101071402"/> <county id="071403" name="绥中" weatherCode="101071403"/> <county id="071404" name="兴城" weatherCode="101071404"/> </city> </province> <province id="08" name="内蒙古"> <city id="0801" name="呼和浩特"> <county id="080101" name="呼和浩特" weatherCode="101080101"/> <county id="080102" name="土左旗" weatherCode="101080102"/> <county id="080103" name="托县" weatherCode="101080103"/> <county id="080104" name="和林" weatherCode="101080104"/> <county id="080105" name="清水河" weatherCode="101080105"/> <county id="080106" name="呼市郊区" weatherCode="101080106"/> <county id="080107" name="武川" weatherCode="101080107"/> </city> <city id="0802" name="包头"> <county id="080201" name="包头" weatherCode="101080201"/> <county id="080202" name="白云鄂博" weatherCode="101080202"/> <county id="080203" name="满都拉" weatherCode="101080203"/> <county id="080204" name="土右旗" weatherCode="101080204"/> <county id="080205" name="固阳" weatherCode="101080205"/> <county id="080206" name="达茂旗" weatherCode="101080206"/> <county id="080207" name="希拉穆仁" weatherCode="101080207"/> </city> <city id="0803" name="乌海"> <county id="080301" name="乌海" weatherCode="101080301"/> </city> <city id="0804" name="乌兰察布"> <county id="080401" name="集宁" weatherCode="101080401"/> <county id="080402" name="卓资" weatherCode="101080402"/> <county id="080403" name="化德" weatherCode="101080403"/> <county id="080404" name="商都" weatherCode="101080404"/> <county id="080405" name="兴和" weatherCode="101080406"/> <county id="080406" name="凉城" weatherCode="101080407"/> <county id="080407" name="察右前旗" weatherCode="101080408"/> <county id="080408" name="察右中旗" weatherCode="101080409"/> <county id="080409" name="察右后旗" weatherCode="101080410"/> <county id="080410" name="四子王旗" weatherCode="101080411"/> <county id="080411" name="丰镇" weatherCode="101080412"/> </city> <city id="0805" name="通辽"> <county id="080501" name="通辽" weatherCode="101080501"/> <county id="080502" name="舍伯吐" weatherCode="101080502"/> <county id="080503" name="科左中旗" weatherCode="101080503"/> <county id="080504" name="科左后旗" weatherCode="101080504"/> <county id="080505" name="青龙山" weatherCode="101080505"/> <county id="080506" name="开鲁" weatherCode="101080506"/> <county id="080507" name="库伦" weatherCode="101080507"/> <county id="080508" name="奈曼" weatherCode="101080508"/> <county id="080509" name="扎鲁特" weatherCode="101080509"/> <county id="080510" name="巴雅尔吐胡硕" weatherCode="101080511"/> <county id="080511" name="霍林郭勒" weatherCode="101081108"/> </city> <city id="0806" name="赤峰"> <county id="080601" name="赤峰" weatherCode="101080601"/> <county id="080602" name="阿鲁旗" weatherCode="101080603"/> <county id="080603" name="浩尔吐" weatherCode="101080604"/> <county id="080604" name="巴林左旗" weatherCode="101080605"/> <county id="080605" name="巴林右旗" weatherCode="101080606"/> <county id="080606" name="林西" weatherCode="101080607"/> <county id="080607" name="克什克腾" weatherCode="101080608"/> <county id="080608" name="翁牛特" weatherCode="101080609"/> <county id="080609" name="岗子" weatherCode="101080610"/> <county id="080610" name="喀喇沁" weatherCode="101080611"/> <county id="080611" name="八里罕" weatherCode="101080612"/> <county id="080612" name="宁城" weatherCode="101080613"/> <county id="080613" name="敖汉" weatherCode="101080614"/> <county id="080614" name="宝国吐" weatherCode="101080615"/> </city> <city id="0807" name="鄂尔多斯"> <county id="080701" name="鄂尔多斯" weatherCode="101080701"/> <county id="080702" name="达拉特" weatherCode="101080703"/> <county id="080703" name="准格尔" weatherCode="101080704"/> <county id="080704" name="鄂前旗" weatherCode="101080705"/> <county id="080705" name="河南" weatherCode="101080706"/> <county id="080706" name="伊克乌素" weatherCode="101080707"/> <county id="080707" name="鄂托克" weatherCode="101080708"/> <county id="080708" name="杭锦旗" weatherCode="101080709"/> <county id="080709" name="乌审旗" weatherCode="101080710"/> <county id="080710" name="伊金霍洛" weatherCode="101080711"/> <county id="080711" name="乌审召" weatherCode="101080712"/> <county id="080712" name="东胜" weatherCode="101080713"/> </city> <city id="0808" name="巴彦淖尔"> <county id="080801" name="临河" weatherCode="101080801"/> <county id="080802" name="五原" weatherCode="101080802"/> <county id="080803" name="磴口" weatherCode="101080803"/> <county id="080804" name="乌前旗" weatherCode="101080804"/> <county id="080805" name="大佘太" weatherCode="101080805"/> <county id="080806" name="乌中旗" weatherCode="101080806"/> <county id="080807" name="乌后旗" weatherCode="101080807"/> <county id="080808" name="海力素" weatherCode="101080808"/> <county id="080809" name="那仁宝力格" weatherCode="101080809"/> <county id="080810" name="杭锦后旗" weatherCode="101080810"/> </city> <city id="0809" name="锡林郭勒"> <county id="080901" name="锡林浩特" weatherCode="101080901"/> <county id="080902" name="二连浩特" weatherCode="101080903"/> <county id="080903" name="阿巴嘎" weatherCode="101080904"/> <county id="080904" name="苏左旗" weatherCode="101080906"/> <county id="080905" name="苏右旗" weatherCode="101080907"/> <county id="080906" name="朱日和" weatherCode="101080908"/> <county id="080907" name="东乌旗" weatherCode="101080909"/> <county id="080908" name="西乌旗" weatherCode="101080910"/> <county id="080909" name="太仆寺" weatherCode="101080911"/> <county id="080910" name="镶黄旗" weatherCode="101080912"/> <county id="080911" name="正镶白旗" weatherCode="101080913"/> <county id="080912" name="正蓝旗" weatherCode="101080914"/> <county id="080913" name="多伦" weatherCode="101080915"/> <county id="080914" name="博克图" weatherCode="101080916"/> <county id="080915" name="乌拉盖" weatherCode="101080917"/> </city> <city id="0810" name="呼伦贝尔"> <county id="081001" name="海拉尔" weatherCode="101081001"/> <county id="081002" name="小二沟" weatherCode="101081002"/> <county id="081003" name="阿荣旗" weatherCode="101081003"/> <county id="081004" name="莫力达瓦" weatherCode="101081004"/> <county id="081005" name="鄂伦春旗" weatherCode="101081005"/> <county id="081006" name="鄂温克旗" weatherCode="101081006"/> <county id="081007" name="陈旗" weatherCode="101081007"/> <county id="081008" name="新左旗" weatherCode="101081008"/> <county id="081009" name="新右旗" weatherCode="101081009"/> <county id="081010" name="满洲里" weatherCode="101081010"/> <county id="081011" name="牙克石" weatherCode="101081011"/> <county id="081012" name="扎兰屯" weatherCode="101081012"/> <county id="081013" name="额尔古纳" weatherCode="101081014"/> <county id="081014" name="根河" weatherCode="101081015"/> <county id="081015" name="图里河" weatherCode="101081016"/> </city> <city id="0811" name="兴安盟"> <county id="081101" name="高力板" weatherCode="101080510"/> <county id="081102" name="乌兰浩特" weatherCode="101081101"/> <county id="081103" name="阿尔山" weatherCode="101081102"/> <county id="081104" name="科右中旗" weatherCode="101081103"/> <county id="081105" name="胡尔勒" weatherCode="101081104"/> <county id="081106" name="扎赉特" weatherCode="101081105"/> <county id="081107" name="索伦" weatherCode="101081106"/> <county id="081108" name="突泉" weatherCode="101081107"/> <county id="081109" name="科右前旗" weatherCode="101081109"/> </city> <city id="0812" name="阿拉善盟"> <county id="081201" name="阿左旗" weatherCode="101081201"/> <county id="081202" name="阿右旗" weatherCode="101081202"/> <county id="081203" name="额济纳" weatherCode="101081203"/> <county id="081204" name="拐子湖" weatherCode="101081204"/> <county id="081205" name="吉兰太" weatherCode="101081205"/> <county id="081206" name="锡林高勒" weatherCode="101081206"/> <county id="081207" name="头道湖" weatherCode="101081207"/> <county id="081208" name="中泉子" weatherCode="101081208"/> <county id="081209" name="诺尔公" weatherCode="101081209"/> <county id="081210" name="雅布赖" weatherCode="101081210"/> <county id="081211" name="乌斯泰" weatherCode="101081211"/> <county id="081212" name="孪井滩" weatherCode="101081212"/> </city> </province> <province id="09" name="河北"> <city id="0901" name="石家庄"> <county id="090101" name="石家庄" weatherCode="101090101"/> <county id="090102" name="井陉" weatherCode="101090102"/> <county id="090103" name="正定" weatherCode="101090103"/> <county id="090104" name="栾城" weatherCode="101090104"/> <county id="090105" name="行唐" weatherCode="101090105"/> <county id="090106" name="灵寿" weatherCode="101090106"/> <county id="090107" name="高邑" weatherCode="101090107"/> <county id="090108" name="深泽" weatherCode="101090108"/> <county id="090109" name="赞皇" weatherCode="101090109"/> <county id="090110" name="无极" weatherCode="101090110"/> <county id="090111" name="平山" weatherCode="101090111"/> <county id="090112" name="元氏" weatherCode="101090112"/> <county id="090113" name="赵县" weatherCode="101090113"/> <county id="090114" name="辛集" weatherCode="101090114"/> <county id="090115" name="藁城" weatherCode="101090115"/> <county id="090116" name="晋州" weatherCode="101090116"/> <county id="090117" name="新乐" weatherCode="101090117"/> <county id="090118" name="鹿泉" weatherCode="101090118"/> </city> <city id="0902" name="保定"> <county id="090201" name="保定" weatherCode="101090201"/> <county id="090202" name="满城" weatherCode="101090202"/> <county id="090203" name="阜平" weatherCode="101090203"/> <county id="090204" name="徐水" weatherCode="101090204"/> <county id="090205" name="唐县" weatherCode="101090205"/> <county id="090206" name="高阳" weatherCode="101090206"/> <county id="090207" name="容城" weatherCode="101090207"/> <county id="090208" name="涞源" weatherCode="101090209"/> <county id="090209" name="望都" weatherCode="101090210"/> <county id="090210" name="安新" weatherCode="101090211"/> <county id="090211" name="易县" weatherCode="101090212"/> <county id="090212" name="曲阳" weatherCode="101090214"/> <county id="090213" name="蠡县" weatherCode="101090215"/> <county id="090214" name="顺平" weatherCode="101090216"/> <county id="090215" name="雄县" weatherCode="101090217"/> <county id="090216" name="涿州" weatherCode="101090218"/> <county id="090217" name="定州" weatherCode="101090219"/> <county id="090218" name="安国" weatherCode="101090220"/> <county id="090219" name="高碑店" weatherCode="101090221"/> <county id="090220" name="涞水" weatherCode="101090222"/> <county id="090221" name="定兴" weatherCode="101090223"/> <county id="090222" name="清苑" weatherCode="101090224"/> <county id="090223" name="博野" weatherCode="101090225"/> </city> <city id="0903" name="张家口"> <county id="090301" name="张家口" weatherCode="101090301"/> <county id="090302" name="宣化" weatherCode="101090302"/> <county id="090303" name="张北" weatherCode="101090303"/> <county id="090304" name="康保" weatherCode="101090304"/> <county id="090305" name="沽源" weatherCode="101090305"/> <county id="090306" name="尚义" weatherCode="101090306"/> <county id="090307" name="蔚县" weatherCode="101090307"/> <county id="090308" name="阳原" weatherCode="101090308"/> <county id="090309" name="怀安" weatherCode="101090309"/> <county id="090310" name="万全" weatherCode="101090310"/> <county id="090311" name="怀来" weatherCode="101090311"/> <county id="090312" name="涿鹿" weatherCode="101090312"/> <county id="090313" name="赤城" weatherCode="101090313"/> <county id="090314" name="崇礼" weatherCode="101090314"/> </city> <city id="0904" name="承德"> <county id="090401" name="承德" weatherCode="101090402"/> <county id="090402" name="承德县" weatherCode="101090403"/> <county id="090403" name="兴隆" weatherCode="101090404"/> <county id="090404" name="平泉" weatherCode="101090405"/> <county id="090405" name="滦平" weatherCode="101090406"/> <county id="090406" name="隆化" weatherCode="101090407"/> <county id="090407" name="丰宁" weatherCode="101090408"/> <county id="090408" name="宽城" weatherCode="101090409"/> <county id="090409" name="围场" weatherCode="101090410"/> </city> <city id="0905" name="唐山"> <county id="090501" name="唐山" weatherCode="101090501"/> <county id="090502" name="丰南" weatherCode="101090502"/> <county id="090503" name="丰润" weatherCode="101090503"/> <county id="090504" name="滦县" weatherCode="101090504"/> <county id="090505" name="滦南" weatherCode="101090505"/> <county id="090506" name="乐亭" weatherCode="101090506"/> <county id="090507" name="迁西" weatherCode="101090507"/> <county id="090508" name="玉田" weatherCode="101090508"/> <county id="090509" name="唐海" weatherCode="101090509"/> <county id="090510" name="遵化" weatherCode="101090510"/> <county id="090511" name="迁安" weatherCode="101090511"/> <county id="090512" name="曹妃甸" weatherCode="101090512"/> </city> <city id="0906" name="廊坊"> <county id="090601" name="廊坊" weatherCode="101090601"/> <county id="090602" name="固安" weatherCode="101090602"/> <county id="090603" name="永清" weatherCode="101090603"/> <county id="090604" name="香河" weatherCode="101090604"/> <county id="090605" name="大城" weatherCode="101090605"/> <county id="090606" name="文安" weatherCode="101090606"/> <county id="090607" name="大厂" weatherCode="101090607"/> <county id="090608" name="霸州" weatherCode="101090608"/> <county id="090609" name="三河" weatherCode="101090609"/> </city> <city id="0907" name="沧州"> <county id="090701" name="沧州" weatherCode="101090701"/> <county id="090702" name="青县" weatherCode="101090702"/> <county id="090703" name="东光" weatherCode="101090703"/> <county id="090704" name="海兴" weatherCode="101090704"/> <county id="090705" name="盐山" weatherCode="101090705"/> <county id="090706" name="肃宁" weatherCode="101090706"/> <county id="090707" name="南皮" weatherCode="101090707"/> <county id="090708" name="吴桥" weatherCode="101090708"/> <county id="090709" name="献县" weatherCode="101090709"/> <county id="090710" name="孟村" weatherCode="101090710"/> <county id="090711" name="泊头" weatherCode="101090711"/> <county id="090712" name="任丘" weatherCode="101090712"/> <county id="090713" name="黄骅" weatherCode="101090713"/> <county id="090714" name="河间" weatherCode="101090714"/> <county id="090715" name="沧县" weatherCode="101090716"/> </city> <city id="0908" name="衡水"> <county id="090801" name="衡水" weatherCode="101090801"/> <county id="090802" name="枣强" weatherCode="101090802"/> <county id="090803" name="武邑" weatherCode="101090803"/> <county id="090804" name="武强" weatherCode="101090804"/> <county id="090805" name="饶阳" weatherCode="101090805"/> <county id="090806" name="安平" weatherCode="101090806"/> <county id="090807" name="故城" weatherCode="101090807"/> <county id="090808" name="景县" weatherCode="101090808"/> <county id="090809" name="阜城" weatherCode="101090809"/> <county id="090810" name="冀州" weatherCode="101090810"/> <county id="090811" name="深州" weatherCode="101090811"/> </city> <city id="0909" name="邢台"> <county id="090901" name="邢台" weatherCode="101090901"/> <county id="090902" name="临城" weatherCode="101090902"/> <county id="090903" name="内丘" weatherCode="101090904"/> <county id="090904" name="柏乡" weatherCode="101090905"/> <county id="090905" name="隆尧" weatherCode="101090906"/> <county id="090906" name="南和" weatherCode="101090907"/> <county id="090907" name="宁晋" weatherCode="101090908"/> <county id="090908" name="巨鹿" weatherCode="101090909"/> <county id="090909" name="新河" weatherCode="101090910"/> <county id="090910" name="广宗" weatherCode="101090911"/> <county id="090911" name="平乡" weatherCode="101090912"/> <county id="090912" name="威县" weatherCode="101090913"/> <county id="090913" name="清河" weatherCode="101090914"/> <county id="090914" name="临西" weatherCode="101090915"/> <county id="090915" name="南宫" weatherCode="101090916"/> <county id="090916" name="沙河" weatherCode="101090917"/> <county id="090917" name="任县" weatherCode="101090918"/> </city> <city id="0910" name="邯郸"> <county id="091001" name="邯郸" weatherCode="101091001"/> <county id="091002" name="峰峰" weatherCode="101091002"/> <county id="091003" name="临漳" weatherCode="101091003"/> <county id="091004" name="成安" weatherCode="101091004"/> <county id="091005" name="大名" weatherCode="101091005"/> <county id="091006" name="涉县" weatherCode="101091006"/> <county id="091007" name="磁县" weatherCode="101091007"/> <county id="091008" name="肥乡" weatherCode="101091008"/> <county id="091009" name="永年" weatherCode="101091009"/> <county id="091010" name="邱县" weatherCode="101091010"/> <county id="091011" name="鸡泽" weatherCode="101091011"/> <county id="091012" name="广平" weatherCode="101091012"/> <county id="091013" name="馆陶" weatherCode="101091013"/> <county id="091014" name="魏县" weatherCode="101091014"/> <county id="091015" name="曲周" weatherCode="101091015"/> <county id="091016" name="武安" weatherCode="101091016"/> </city> <city id="0911" name="秦皇岛"> <county id="091101" name="秦皇岛" weatherCode="101091101"/> <county id="091102" name="青龙" weatherCode="101091102"/> <county id="091103" name="昌黎" weatherCode="101091103"/> <county id="091104" name="抚宁" weatherCode="101091104"/> <county id="091105" name="卢龙" weatherCode="101091105"/> <county id="091106" name="北戴河" weatherCode="101091106"/> </city> </province> <province id="10" name="山西"> <city id="1001" name="太原"> <county id="100101" name="太原" weatherCode="101100101"/> <county id="100102" name="清徐" weatherCode="101100102"/> <county id="100103" name="阳曲" weatherCode="101100103"/> <county id="100104" name="娄烦" weatherCode="101100104"/> <county id="100105" name="古交" weatherCode="101100105"/> <county id="100106" name="尖草坪区" weatherCode="101100106"/> <county id="100107" name="小店区" weatherCode="101100107"/> </city> <city id="1002" name="大同"> <county id="100201" name="大同" weatherCode="101100201"/> <county id="100202" name="阳高" weatherCode="101100202"/> <county id="100203" name="大同县" weatherCode="101100203"/> <county id="100204" name="天镇" weatherCode="101100204"/> <county id="100205" name="广灵" weatherCode="101100205"/> <county id="100206" name="灵丘" weatherCode="101100206"/> <county id="100207" name="浑源" weatherCode="101100207"/> <county id="100208" name="左云" weatherCode="101100208"/> </city> <city id="1003" name="阳泉"> <county id="100301" name="阳泉" weatherCode="101100301"/> <county id="100302" name="盂县" weatherCode="101100302"/> <county id="100303" name="平定" weatherCode="101100303"/> </city> <city id="1004" name="晋中"> <county id="100401" name="晋中" weatherCode="101100401"/> <county id="100402" name="榆次" weatherCode="101100402"/> <county id="100403" name="榆社" weatherCode="101100403"/> <county id="100404" name="左权" weatherCode="101100404"/> <county id="100405" name="和顺" weatherCode="101100405"/> <county id="100406" name="昔阳" weatherCode="101100406"/> <county id="100407" name="寿阳" weatherCode="101100407"/> <county id="100408" name="太谷" weatherCode="101100408"/> <county id="100409" name="祁县" weatherCode="101100409"/> <county id="100410" name="平遥" weatherCode="101100410"/> <county id="100411" name="灵石" weatherCode="101100411"/> <county id="100412" name="介休" weatherCode="101100412"/> </city> <city id="1005" name="长治"> <county id="100501" name="长治" weatherCode="101100501"/> <county id="100502" name="黎城" weatherCode="101100502"/> <county id="100503" name="屯留" weatherCode="101100503"/> <county id="100504" name="潞城" weatherCode="101100504"/> <county id="100505" name="襄垣" weatherCode="101100505"/> <county id="100506" name="平顺" weatherCode="101100506"/> <county id="100507" name="武乡" weatherCode="101100507"/> <county id="100508" name="沁县" weatherCode="101100508"/> <county id="100509" name="长子" weatherCode="101100509"/> <county id="100510" name="沁源" weatherCode="101100510"/> <county id="100511" name="壶关" weatherCode="101100511"/> </city> <city id="1006" name="晋城"> <county id="100601" name="晋城" weatherCode="101100601"/> <county id="100602" name="沁水" weatherCode="101100602"/> <county id="100603" name="阳城" weatherCode="101100603"/> <county id="100604" name="陵川" weatherCode="101100604"/> <county id="100605" name="高平" weatherCode="101100605"/> <county id="100606" name="泽州" weatherCode="101100606"/> </city> <city id="1007" name="临汾"> <county id="100701" name="临汾" weatherCode="101100701"/> <county id="100702" name="曲沃" weatherCode="101100702"/> <county id="100703" name="永和" weatherCode="101100703"/> <county id="100704" name="隰县" weatherCode="101100704"/> <county id="100705" name="大宁" weatherCode="101100705"/> <county id="100706" name="吉县" weatherCode="101100706"/> <county id="100707" name="襄汾" weatherCode="101100707"/> <county id="100708" name="蒲县" weatherCode="101100708"/> <county id="100709" name="汾西" weatherCode="101100709"/> <county id="100710" name="洪洞" weatherCode="101100710"/> <county id="100711" name="霍州" weatherCode="101100711"/> <county id="100712" name="乡宁" weatherCode="101100712"/> <county id="100713" name="翼城" weatherCode="101100713"/> <county id="100714" name="侯马" weatherCode="101100714"/> <county id="100715" name="浮山" weatherCode="101100715"/> <county id="100716" name="安泽" weatherCode="101100716"/> <county id="100717" name="古县" weatherCode="101100717"/> </city> <city id="1008" name="运城"> <county id="100801" name="运城" weatherCode="101100801"/> <county id="100802" name="临猗" weatherCode="101100802"/> <county id="100803" name="稷山" weatherCode="101100803"/> <county id="100804" name="万荣" weatherCode="101100804"/> <county id="100805" name="河津" weatherCode="101100805"/> <county id="100806" name="新绛" weatherCode="101100806"/> <county id="100807" name="绛县" weatherCode="101100807"/> <county id="100808" name="闻喜" weatherCode="101100808"/> <county id="100809" name="垣曲" weatherCode="101100809"/> <county id="100810" name="永济" weatherCode="101100810"/> <county id="100811" name="芮城" weatherCode="101100811"/> <county id="100812" name="夏县" weatherCode="101100812"/> <county id="100813" name="平陆" weatherCode="101100813"/> </city> <city id="1009" name="朔州"> <county id="100901" name="朔州" weatherCode="101100901"/> <county id="100902" name="平鲁" weatherCode="101100902"/> <county id="100903" name="山阴" weatherCode="101100903"/> <county id="100904" name="右玉" weatherCode="101100904"/> <county id="100905" name="应县" weatherCode="101100905"/> <county id="100906" name="怀仁" weatherCode="101100906"/> </city> <city id="1010" name="忻州"> <county id="101001" name="忻州" weatherCode="101101001"/> <county id="101002" name="定襄" weatherCode="101101002"/> <county id="101003" name="五台县" weatherCode="101101003"/> <county id="101004" name="河曲" weatherCode="101101004"/> <county id="101005" name="偏关" weatherCode="101101005"/> <county id="101006" name="神池" weatherCode="101101006"/> <county id="101007" name="宁武" weatherCode="101101007"/> <county id="101008" name="代县" weatherCode="101101008"/> <county id="101009" name="繁峙" weatherCode="101101009"/> <county id="101010" name="五台山" weatherCode="101101010"/> <county id="101011" name="保德" weatherCode="101101011"/> <county id="101012" name="静乐" weatherCode="101101012"/> <county id="101013" name="岢岚" weatherCode="101101013"/> <county id="101014" name="五寨" weatherCode="101101014"/> <county id="101015" name="原平" weatherCode="101101015"/> </city> <city id="1011" name="吕梁"> <county id="101101" name="吕梁" weatherCode="101101100"/> <county id="101102" name="离石" weatherCode="101101101"/> <county id="101103" name="临县" weatherCode="101101102"/> <county id="101104" name="兴县" weatherCode="101101103"/> <county id="101105" name="岚县" weatherCode="101101104"/> <county id="101106" name="柳林" weatherCode="101101105"/> <county id="101107" name="石楼" weatherCode="101101106"/> <county id="101108" name="方山" weatherCode="101101107"/> <county id="101109" name="交口" weatherCode="101101108"/> <county id="101110" name="中阳" weatherCode="101101109"/> <county id="101111" name="孝义" weatherCode="101101110"/> <county id="101112" name="汾阳" weatherCode="101101111"/> <county id="101113" name="文水" weatherCode="101101112"/> <county id="101114" name="交城" weatherCode="101101113"/> </city> </province> <province id="11" name="陕西"> <city id="1101" name="西安"> <county id="110101" name="西安" weatherCode="101110101"/> <county id="110102" name="长安" weatherCode="101110102"/> <county id="110103" name="临潼" weatherCode="101110103"/> <county id="110104" name="蓝田" weatherCode="101110104"/> <county id="110105" name="周至" weatherCode="101110105"/> <county id="110106" name="户县" weatherCode="101110106"/> <county id="110107" name="高陵" weatherCode="101110107"/> </city> <city id="1102" name="咸阳"> <county id="110201" name="咸阳" weatherCode="101110200"/> <county id="110202" name="三原" weatherCode="101110201"/> <county id="110203" name="礼泉" weatherCode="101110202"/> <county id="110204" name="永寿" weatherCode="101110203"/> <county id="110205" name="淳化" weatherCode="101110204"/> <county id="110206" name="泾阳" weatherCode="101110205"/> <county id="110207" name="武功" weatherCode="101110206"/> <county id="110208" name="乾县" weatherCode="101110207"/> <county id="110209" name="彬县" weatherCode="101110208"/> <county id="110210" name="长武" weatherCode="101110209"/> <county id="110211" name="旬邑" weatherCode="101110210"/> <county id="110212" name="兴平" weatherCode="101110211"/> </city> <city id="1103" name="延安"> <county id="110301" name="延安" weatherCode="101110300"/> <county id="110302" name="延长" weatherCode="101110301"/> <county id="110303" name="延川" weatherCode="101110302"/> <county id="110304" name="子长" weatherCode="101110303"/> <county id="110305" name="宜川" weatherCode="101110304"/> <county id="110306" name="富县" weatherCode="101110305"/> <county id="110307" name="志丹" weatherCode="101110306"/> <county id="110308" name="安塞" weatherCode="101110307"/> <county id="110309" name="甘泉" weatherCode="101110308"/> <county id="110310" name="洛川" weatherCode="101110309"/> <county id="110311" name="黄陵" weatherCode="101110310"/> <county id="110312" name="黄龙" weatherCode="101110311"/> <county id="110313" name="吴起" weatherCode="101110312"/> </city> <city id="1104" name="榆林"> <county id="110401" name="榆林" weatherCode="101110401"/> <county id="110402" name="府谷" weatherCode="101110402"/> <county id="110403" name="神木" weatherCode="101110403"/> <county id="110404" name="佳县" weatherCode="101110404"/> <county id="110405" name="定边" weatherCode="101110405"/> <county id="110406" name="靖边" weatherCode="101110406"/> <county id="110407" name="横山" weatherCode="101110407"/> <county id="110408" name="米脂" weatherCode="101110408"/> <county id="110409" name="子洲" weatherCode="101110409"/> <county id="110410" name="绥德" weatherCode="101110410"/> <county id="110411" name="吴堡" weatherCode="101110411"/> <county id="110412" name="清涧" weatherCode="101110412"/> <county id="110413" name="榆阳" weatherCode="101110413"/> </city> <city id="1105" name="渭南"> <county id="110501" name="渭南" weatherCode="101110501"/> <county id="110502" name="华县" weatherCode="101110502"/> <county id="110503" name="潼关" weatherCode="101110503"/> <county id="110504" name="大荔" weatherCode="101110504"/> <county id="110505" name="白水" weatherCode="101110505"/> <county id="110506" name="富平" weatherCode="101110506"/> <county id="110507" name="蒲城" weatherCode="101110507"/> <county id="110508" name="澄城" weatherCode="101110508"/> <county id="110509" name="合阳" weatherCode="101110509"/> <county id="110510" name="韩城" weatherCode="101110510"/> <county id="110511" name="华阴" weatherCode="101110511"/> </city> <city id="1106" name="商洛"> <county id="110601" name="商洛" weatherCode="101110601"/> <county id="110602" name="洛南" weatherCode="101110602"/> <county id="110603" name="柞水" weatherCode="101110603"/> <county id="110604" name="商州" weatherCode="101110604"/> <county id="110605" name="镇安" weatherCode="101110605"/> <county id="110606" name="丹凤" weatherCode="101110606"/> <county id="110607" name="商南" weatherCode="101110607"/> <county id="110608" name="山阳" weatherCode="101110608"/> </city> <city id="1107" name="安康"> <county id="110701" name="安康" weatherCode="101110701"/> <county id="110702" name="紫阳" weatherCode="101110702"/> <county id="110703" name="石泉" weatherCode="101110703"/> <county id="110704" name="汉阴" weatherCode="101110704"/> <county id="110705" name="旬阳" weatherCode="101110705"/> <county id="110706" name="岚皋" weatherCode="101110706"/> <county id="110707" name="平利" weatherCode="101110707"/> <county id="110708" name="白河" weatherCode="101110708"/> <county id="110709" name="镇坪" weatherCode="101110709"/> <county id="110710" name="宁陕" weatherCode="101110710"/> </city> <city id="1108" name="汉中"> <county id="110801" name="汉中" weatherCode="101110801"/> <county id="110802" name="略阳" weatherCode="101110802"/> <county id="110803" name="勉县" weatherCode="101110803"/> <county id="110804" name="留坝" weatherCode="101110804"/> <county id="110805" name="洋县" weatherCode="101110805"/> <county id="110806" name="城固" weatherCode="101110806"/> <county id="110807" name="西乡" weatherCode="101110807"/> <county id="110808" name="佛坪" weatherCode="101110808"/> <county id="110809" name="宁强" weatherCode="101110809"/> <county id="110810" name="南郑" weatherCode="101110810"/> <county id="110811" name="镇巴" weatherCode="101110811"/> </city> <city id="1109" name="宝鸡"> <county id="110901" name="宝鸡" weatherCode="101110901"/> <county id="110902" name="千阳" weatherCode="101110903"/> <county id="110903" name="麟游" weatherCode="101110904"/> <county id="110904" name="岐山" weatherCode="101110905"/> <county id="110905" name="凤翔" weatherCode="101110906"/> <county id="110906" name="扶风" weatherCode="101110907"/> <county id="110907" name="眉县" weatherCode="101110908"/> <county id="110908" name="太白" weatherCode="101110909"/> <county id="110909" name="凤县" weatherCode="101110910"/> <county id="110910" name="陇县" weatherCode="101110911"/> <county id="110911" name="陈仓" weatherCode="101110912"/> </city> <city id="1110" name="铜川"> <county id="111001" name="铜川" weatherCode="101111001"/> <county id="111002" name="耀县" weatherCode="101111002"/> <county id="111003" name="宜君" weatherCode="101111003"/> <county id="111004" name="耀州" weatherCode="101111004"/> </city> <city id="1111" name="杨凌"> <county id="111101" name="杨凌" weatherCode="102222201"/> </city> </province> <province id="12" name="山东"> <city id="1201" name="济南"> <county id="120101" name="济南" weatherCode="101120101"/> <county id="120102" name="长清" weatherCode="101120102"/> <county id="120103" name="商河" weatherCode="101120103"/> <county id="120104" name="章丘" weatherCode="101120104"/> <county id="120105" name="平阴" weatherCode="101120105"/> <county id="120106" name="济阳" weatherCode="101120106"/> </city> <city id="1202" name="青岛"> <county id="120201" name="青岛" weatherCode="101120201"/> <county id="120202" name="崂山" weatherCode="101120202"/> <county id="120203" name="即墨" weatherCode="101120204"/> <county id="120204" name="胶州" weatherCode="101120205"/> <county id="120205" name="胶南" weatherCode="101120206"/> <county id="120206" name="莱西" weatherCode="101120207"/> <county id="120207" name="平度" weatherCode="101120208"/> </city> <city id="1203" name="淄博"> <county id="120301" name="淄博" weatherCode="101120301"/> <county id="120302" name="淄川" weatherCode="101120302"/> <county id="120303" name="博山" weatherCode="101120303"/> <county id="120304" name="高青" weatherCode="101120304"/> <county id="120305" name="周村" weatherCode="101120305"/> <county id="120306" name="沂源" weatherCode="101120306"/> <county id="120307" name="桓台" weatherCode="101120307"/> <county id="120308" name="临淄" weatherCode="101120308"/> </city> <city id="1204" name="德州"> <county id="120401" name="德州" weatherCode="101120401"/> <county id="120402" name="武城" weatherCode="101120402"/> <county id="120403" name="临邑" weatherCode="101120403"/> <county id="120404" name="陵县" weatherCode="101120404"/> <county id="120405" name="齐河" weatherCode="101120405"/> <county id="120406" name="乐陵" weatherCode="101120406"/> <county id="120407" name="庆云" weatherCode="101120407"/> <county id="120408" name="平原" weatherCode="101120408"/> <county id="120409" name="宁津" weatherCode="101120409"/> <county id="120410" name="夏津" weatherCode="101120410"/> <county id="120411" name="禹城" weatherCode="101120411"/> </city> <city id="1205" name="烟台"> <county id="120501" name="烟台" weatherCode="101120501"/> <county id="120502" name="莱州" weatherCode="101120502"/> <county id="120503" name="长岛" weatherCode="101120503"/> <county id="120504" name="蓬莱" weatherCode="101120504"/> <county id="120505" name="龙口" weatherCode="101120505"/> <county id="120506" name="招远" weatherCode="101120506"/> <county id="120507" name="栖霞" weatherCode="101120507"/> <county id="120508" name="福山" weatherCode="101120508"/> <county id="120509" name="牟平" weatherCode="101120509"/> <county id="120510" name="莱阳" weatherCode="101120510"/> <county id="120511" name="海阳" weatherCode="101120511"/> </city> <city id="1206" name="潍坊"> <county id="120601" name="潍坊" weatherCode="101120601"/> <county id="120602" name="青州" weatherCode="101120602"/> <county id="120603" name="寿光" weatherCode="101120603"/> <county id="120604" name="临朐" weatherCode="101120604"/> <county id="120605" name="昌乐" weatherCode="101120605"/> <county id="120606" name="昌邑" weatherCode="101120606"/> <county id="120607" name="安丘" weatherCode="101120607"/> <county id="120608" name="高密" weatherCode="101120608"/> <county id="120609" name="诸城" weatherCode="101120609"/> </city> <city id="1207" name="济宁"> <county id="120701" name="济宁" weatherCode="101120701"/> <county id="120702" name="嘉祥" weatherCode="101120702"/> <county id="120703" name="微山" weatherCode="101120703"/> <county id="120704" name="鱼台" weatherCode="101120704"/> <county id="120705" name="兖州" weatherCode="101120705"/> <county id="120706" name="金乡" weatherCode="101120706"/> <county id="120707" name="汶上" weatherCode="101120707"/> <county id="120708" name="泗水" weatherCode="101120708"/> <county id="120709" name="梁山" weatherCode="101120709"/> <county id="120710" name="曲阜" weatherCode="101120710"/> <county id="120711" name="邹城" weatherCode="101120711"/> </city> <city id="1208" name="泰安"> <county id="120801" name="泰安" weatherCode="101120801"/> <county id="120802" name="新泰" weatherCode="101120802"/> <county id="120803" name="肥城" weatherCode="101120804"/> <county id="120804" name="东平" weatherCode="101120805"/> <county id="120805" name="宁阳" weatherCode="101120806"/> </city> <city id="1209" name="临沂"> <county id="120901" name="临沂" weatherCode="101120901"/> <county id="120902" name="莒南" weatherCode="101120902"/> <county id="120903" name="沂南" weatherCode="101120903"/> <county id="120904" name="苍山" weatherCode="101120904"/> <county id="120905" name="临沭" weatherCode="101120905"/> <county id="120906" name="郯城" weatherCode="101120906"/> <county id="120907" name="蒙阴" weatherCode="101120907"/> <county id="120908" name="平邑" weatherCode="101120908"/> <county id="120909" name="费县" weatherCode="101120909"/> <county id="120910" name="沂水" weatherCode="101120910"/> </city> <city id="1210" name="菏泽"> <county id="121001" name="菏泽" weatherCode="101121001"/> <county id="121002" name="鄄城" weatherCode="101121002"/> <county id="121003" name="郓城" weatherCode="101121003"/> <county id="121004" name="东明" weatherCode="101121004"/> <county id="121005" name="定陶" weatherCode="101121005"/> <county id="121006" name="巨野" weatherCode="101121006"/> <county id="121007" name="曹县" weatherCode="101121007"/> <county id="121008" name="成武" weatherCode="101121008"/> <county id="121009" name="单县" weatherCode="101121009"/> </city> <city id="1211" name="滨州"> <county id="121101" name="滨州" weatherCode="101121101"/> <county id="121102" name="博兴" weatherCode="101121102"/> <county id="121103" name="无棣" weatherCode="101121103"/> <county id="121104" name="阳信" weatherCode="101121104"/> <county id="121105" name="惠民" weatherCode="101121105"/> <county id="121106" name="沾化" weatherCode="101121106"/> <county id="121107" name="邹平" weatherCode="101121107"/> </city> <city id="1212" name="东营"> <county id="121201" name="东营" weatherCode="101121201"/> <county id="121202" name="河口" weatherCode="101121202"/> <county id="121203" name="垦利" weatherCode="101121203"/> <county id="121204" name="利津" weatherCode="101121204"/> <county id="121205" name="广饶" weatherCode="101121205"/> </city> <city id="1213" name="威海"> <county id="121301" name="威海" weatherCode="101121301"/> <county id="121302" name="文登" weatherCode="101121302"/> <county id="121303" name="荣成" weatherCode="101121303"/> <county id="121304" name="乳山" weatherCode="101121304"/> <county id="121305" name="成山头" weatherCode="101121305"/> <county id="121306" name="石岛" weatherCode="101121306"/> </city> <city id="1214" name="枣庄"> <county id="121401" name="枣庄" weatherCode="101121401"/> <county id="121402" name="薛城" weatherCode="101121402"/> <county id="121403" name="峄城" weatherCode="101121403"/> <county id="121404" name="台儿庄" weatherCode="101121404"/> <county id="121405" name="滕州" weatherCode="101121405"/> </city> <city id="1215" name="日照"> <county id="121501" name="日照" weatherCode="101121501"/> <county id="121502" name="五莲" weatherCode="101121502"/> <county id="121503" name="莒县" weatherCode="101121503"/> </city> <city id="1216" name="莱芜"> <county id="121601" name="莱芜" weatherCode="101121601"/> </city> <city id="1217" name="聊城"> <county id="121701" name="聊城" weatherCode="101121701"/> <county id="121702" name="冠县" weatherCode="101121702"/> <county id="121703" name="阳谷" weatherCode="101121703"/> <county id="121704" name="高唐" weatherCode="101121704"/> <county id="121705" name="茌平" weatherCode="101121705"/> <county id="121706" name="东阿" weatherCode="101121706"/> <county id="121707" name="临清" weatherCode="101121707"/> <county id="121708" name="莘县" weatherCode="101121709"/> </city> </province> <province id="13" name="新疆"> <city id="1301" name="乌鲁木齐"> <county id="130101" name="乌鲁木齐" weatherCode="101130101"/> <county id="130102" name="小渠子" weatherCode="101130103"/> <county id="130103" name="达坂城" weatherCode="101130105"/> <county id="130104" name="乌鲁木齐牧试站" weatherCode="101130108"/> <county id="130105" name="天池" weatherCode="101130109"/> <county id="130106" name="白杨沟" weatherCode="101130110"/> </city> <city id="1302" name="克拉玛依"> <county id="130201" name="克拉玛依" weatherCode="101130201"/> <county id="130202" name="乌尔禾" weatherCode="101130202"/> <county id="130203" name="白碱滩" weatherCode="101130203"/> </city> <city id="1303" name="石河子"> <county id="130301" name="石河子" weatherCode="101130301"/> <county id="130302" name="炮台" weatherCode="101130302"/> <county id="130303" name="莫索湾" weatherCode="101130303"/> </city> <city id="1304" name="昌吉"> <county id="130401" name="昌吉" weatherCode="101130401"/> <county id="130402" name="呼图壁" weatherCode="101130402"/> <county id="130403" name="米泉" weatherCode="101130403"/> <county id="130404" name="阜康" weatherCode="101130404"/> <county id="130405" name="吉木萨尔" weatherCode="101130405"/> <county id="130406" name="奇台" weatherCode="101130406"/> <county id="130407" name="玛纳斯" weatherCode="101130407"/> <county id="130408" name="木垒" weatherCode="101130408"/> <county id="130409" name="蔡家湖" weatherCode="101130409"/> </city> <city id="1305" name="吐鲁番"> <county id="130501" name="吐鲁番" weatherCode="101130501"/> <county id="130502" name="托克逊" weatherCode="101130502"/> <county id="130503" name="鄯善" weatherCode="101130504"/> </city> <city id="1306" name="巴音郭楞"> <county id="130601" name="库尔勒" weatherCode="101130601"/> <county id="130602" name="轮台" weatherCode="101130602"/> <county id="130603" name="尉犁" weatherCode="101130603"/> <county id="130604" name="若羌" weatherCode="101130604"/> <county id="130605" name="且末" weatherCode="101130605"/> <county id="130606" name="和静" weatherCode="101130606"/> <county id="130607" name="焉耆" weatherCode="101130607"/> <county id="130608" name="和硕" weatherCode="101130608"/> <county id="130609" name="巴音布鲁克" weatherCode="101130610"/> <county id="130610" name="铁干里克" weatherCode="101130611"/> <county id="130611" name="博湖" weatherCode="101130612"/> <county id="130612" name="塔中" weatherCode="101130613"/> <county id="130613" name="巴仑台" weatherCode="101130614"/> </city> <city id="1307" name="阿拉尔"> <county id="130701" name="阿拉尔" weatherCode="101130701"/> </city> <city id="1308" name="阿克苏"> <county id="130801" name="阿克苏" weatherCode="101130801"/> <county id="130802" name="乌什" weatherCode="101130802"/> <county id="130803" name="温宿" weatherCode="101130803"/> <county id="130804" name="拜城" weatherCode="101130804"/> <county id="130805" name="新和" weatherCode="101130805"/> <county id="130806" name="沙雅" weatherCode="101130806"/> <county id="130807" name="库车" weatherCode="101130807"/> <county id="130808" name="柯坪" weatherCode="101130808"/> <county id="130809" name="阿瓦提" weatherCode="101130809"/> </city> <city id="1309" name="喀什"> <county id="130901" name="喀什" weatherCode="101130901"/> <county id="130902" name="英吉沙" weatherCode="101130902"/> <county id="130903" name="塔什库尔干" weatherCode="101130903"/> <county id="130904" name="麦盖提" weatherCode="101130904"/> <county id="130905" name="莎车" weatherCode="101130905"/> <county id="130906" name="叶城" weatherCode="101130906"/> <county id="130907" name="泽普" weatherCode="101130907"/> <county id="130908" name="巴楚" weatherCode="101130908"/> <county id="130909" name="岳普湖" weatherCode="101130909"/> <county id="130910" name="伽师" weatherCode="101130910"/> <county id="130911" name="疏附" weatherCode="101130911"/> <county id="130912" name="疏勒" weatherCode="101130912"/> </city> <city id="1310" name="伊犁"> <county id="131001" name="伊宁" weatherCode="101131001"/> <county id="131002" name="察布查尔" weatherCode="101131002"/> <county id="131003" name="尼勒克" weatherCode="101131003"/> <county id="131004" name="伊宁县" weatherCode="101131004"/> <county id="131005" name="巩留" weatherCode="101131005"/> <county id="131006" name="新源" weatherCode="101131006"/> <county id="131007" name="昭苏" weatherCode="101131007"/> <county id="131008" name="特克斯" weatherCode="101131008"/> <county id="131009" name="霍城" weatherCode="101131009"/> <county id="131010" name="霍尔果斯" weatherCode="101131010"/> <county id="131011" name="奎屯" weatherCode="101131011"/> </city> <city id="1311" name="塔城"> <county id="131101" name="塔城" weatherCode="101131101"/> <county id="131102" name="裕民" weatherCode="101131102"/> <county id="131103" name="额敏" weatherCode="101131103"/> <county id="131104" name="和布克赛尔" weatherCode="101131104"/> <county id="131105" name="托里" weatherCode="101131105"/> <county id="131106" name="乌苏" weatherCode="101131106"/> <county id="131107" name="沙湾" weatherCode="101131107"/> </city> <city id="1312" name="哈密"> <county id="131201" name="哈密" weatherCode="101131201"/> <county id="131202" name="巴里坤" weatherCode="101131203"/> <county id="131203" name="伊吾" weatherCode="101131204"/> </city> <city id="1313" name="和田"> <county id="131301" name="和田" weatherCode="101131301"/> <county id="131302" name="皮山" weatherCode="101131302"/> <county id="131303" name="策勒" weatherCode="101131303"/> <county id="131304" name="墨玉" weatherCode="101131304"/> <county id="131305" name="洛浦" weatherCode="101131305"/> <county id="131306" name="民丰" weatherCode="101131306"/> <county id="131307" name="于田" weatherCode="101131307"/> </city> <city id="1314" name="阿勒泰"> <county id="131401" name="阿勒泰" weatherCode="101131401"/> <county id="131402" name="哈巴河" weatherCode="101131402"/> <county id="131403" name="吉木乃" weatherCode="101131405"/> <county id="131404" name="布尔津" weatherCode="101131406"/> <county id="131405" name="福海" weatherCode="101131407"/> <county id="131406" name="富蕴" weatherCode="101131408"/> <county id="131407" name="青河" weatherCode="101131409"/> </city> <city id="1315" name="克州"> <county id="131501" name="阿图什" weatherCode="101131501"/> <county id="131502" name="乌恰" weatherCode="101131502"/> <county id="131503" name="阿克陶" weatherCode="101131503"/> <county id="131504" name="阿合奇" weatherCode="101131504"/> </city> <city id="1316" name="博尔塔拉"> <county id="131601" name="博乐" weatherCode="101131601"/> <county id="131602" name="温泉" weatherCode="101131602"/> <county id="131603" name="精河" weatherCode="101131603"/> <county id="131604" name="阿拉山口" weatherCode="101131606"/> </city> </province> <province id="14" name="西藏"> <city id="1401" name="拉萨"> <county id="140101" name="拉萨" weatherCode="101140101"/> <county id="140102" name="当雄" weatherCode="101140102"/> <county id="140103" name="尼木" weatherCode="101140103"/> <county id="140104" name="林周" weatherCode="101140104"/> <county id="140105" name="堆龙德庆" weatherCode="101140105"/> <county id="140106" name="曲水" weatherCode="101140106"/> <county id="140107" name="达孜" weatherCode="101140107"/> <county id="140108" name="墨竹工卡" weatherCode="101140108"/> </city> <city id="1402" name="日喀则"> <county id="140201" name="日喀则" weatherCode="101140201"/> <county id="140202" name="拉孜" weatherCode="101140202"/> <county id="140203" name="南木林" weatherCode="101140203"/> <county id="140204" name="聂拉木" weatherCode="101140204"/> <county id="140205" name="定日" weatherCode="101140205"/> <county id="140206" name="江孜" weatherCode="101140206"/> <county id="140207" name="帕里" weatherCode="101140207"/> <county id="140208" name="仲巴" weatherCode="101140208"/> <county id="140209" name="萨嘎" weatherCode="101140209"/> <county id="140210" name="吉隆" weatherCode="101140210"/> <county id="140211" name="昂仁" weatherCode="101140211"/> <county id="140212" name="定结" weatherCode="101140212"/> <county id="140213" name="萨迦" weatherCode="101140213"/> <county id="140214" name="谢通门" weatherCode="101140214"/> <county id="140215" name="岗巴" weatherCode="101140216"/> <county id="140216" name="白朗" weatherCode="101140217"/> <county id="140217" name="亚东" weatherCode="101140218"/> <county id="140218" name="康马" weatherCode="101140219"/> <county id="140219" name="仁布" weatherCode="101140220"/> </city> <city id="1403" name="山南"> <county id="140301" name="山南" weatherCode="101140301"/> <county id="140302" name="贡嘎" weatherCode="101140302"/> <county id="140303" name="扎囊" weatherCode="101140303"/> <county id="140304" name="加查" weatherCode="101140304"/> <county id="140305" name="浪卡子" weatherCode="101140305"/> <county id="140306" name="错那" weatherCode="101140306"/> <county id="140307" name="隆子" weatherCode="101140307"/> <county id="140308" name="泽当" weatherCode="101140308"/> <county id="140309" name="乃东" weatherCode="101140309"/> <county id="140310" name="桑日" weatherCode="101140310"/> <county id="140311" name="洛扎" weatherCode="101140311"/> <county id="140312" name="措美" weatherCode="101140312"/> <county id="140313" name="琼结" weatherCode="101140313"/> <county id="140314" name="曲松" weatherCode="101140314"/> </city> <city id="1404" name="林芝"> <county id="140401" name="林芝" weatherCode="101140401"/> <county id="140402" name="波密" weatherCode="101140402"/> <county id="140403" name="米林" weatherCode="101140403"/> <county id="140404" name="察隅" weatherCode="101140404"/> <county id="140405" name="工布江达" weatherCode="101140405"/> <county id="140406" name="朗县" weatherCode="101140406"/> <county id="140407" name="墨脱" weatherCode="101140407"/> </city> <city id="1405" name="昌都"> <county id="140501" name="昌都" weatherCode="101140501"/> <county id="140502" name="丁青" weatherCode="101140502"/> <county id="140503" name="边坝" weatherCode="101140503"/> <county id="140504" name="洛隆" weatherCode="101140504"/> <county id="140505" name="左贡" weatherCode="101140505"/> <county id="140506" name="芒康" weatherCode="101140506"/> <county id="140507" name="类乌齐" weatherCode="101140507"/> <county id="140508" name="八宿" weatherCode="101140508"/> <county id="140509" name="江达" weatherCode="101140509"/> <county id="140510" name="察雅" weatherCode="101140510"/> <county id="140511" name="贡觉" weatherCode="101140511"/> </city> <city id="1406" name="那曲"> <county id="140601" name="那曲" weatherCode="101140601"/> <county id="140602" name="尼玛" weatherCode="101140602"/> <county id="140603" name="嘉黎" weatherCode="101140603"/> <county id="140604" name="班戈" weatherCode="101140604"/> <county id="140605" name="安多" weatherCode="101140605"/> <county id="140606" name="索县" weatherCode="101140606"/> <county id="140607" name="聂荣" weatherCode="101140607"/> <county id="140608" name="巴青" weatherCode="101140608"/> <county id="140609" name="比如" weatherCode="101140609"/> <county id="140610" name="双湖" weatherCode="101140610"/> </city> <city id="1407" name="阿里"> <county id="140701" name="阿里" weatherCode="101140701"/> <county id="140702" name="改则" weatherCode="101140702"/> <county id="140703" name="申扎" weatherCode="101140703"/> <county id="140704" name="狮泉河" weatherCode="101140704"/> <county id="140705" name="普兰" weatherCode="101140705"/> <county id="140706" name="札达" weatherCode="101140706"/> <county id="140707" name="噶尔" weatherCode="101140707"/> <county id="140708" name="日土" weatherCode="101140708"/> <county id="140709" name="革吉" weatherCode="101140709"/> <county id="140710" name="措勤" weatherCode="101140710"/> </city> </province> <province id="15" name="青海"> <city id="1501" name="西宁"> <county id="150101" name="西宁" weatherCode="101150101"/> <county id="150102" name="大通" weatherCode="101150102"/> <county id="150103" name="湟源" weatherCode="101150103"/> <county id="150104" name="湟中" weatherCode="101150104"/> </city> <city id="1502" name="海东"> <county id="150201" name="海东" weatherCode="101150201"/> <county id="150202" name="乐都" weatherCode="101150202"/> <county id="150203" name="民和" weatherCode="101150203"/> <county id="150204" name="互助" weatherCode="101150204"/> <county id="150205" name="化隆" weatherCode="101150205"/> <county id="150206" name="循化" weatherCode="101150206"/> <county id="150207" name="冷湖" weatherCode="101150207"/> <county id="150208" name="平安" weatherCode="101150208"/> </city> <city id="1503" name="黄南"> <county id="150301" name="黄南" weatherCode="101150301"/> <county id="150302" name="尖扎" weatherCode="101150302"/> <county id="150303" name="泽库" weatherCode="101150303"/> <county id="150304" name="河南" weatherCode="101150304"/> <county id="150305" name="同仁" weatherCode="101150305"/> </city> <city id="1504" name="海南"> <county id="150401" name="海南" weatherCode="101150401"/> <county id="150402" name="贵德" weatherCode="101150404"/> <county id="150403" name="兴海" weatherCode="101150406"/> <county id="150404" name="贵南" weatherCode="101150407"/> <county id="150405" name="同德" weatherCode="101150408"/> <county id="150406" name="共和" weatherCode="101150409"/> </city> <city id="1505" name="果洛"> <county id="150501" name="果洛" weatherCode="101150501"/> <county id="150502" name="班玛" weatherCode="101150502"/> <county id="150503" name="甘德" weatherCode="101150503"/> <county id="150504" name="达日" weatherCode="101150504"/> <county id="150505" name="久治" weatherCode="101150505"/> <county id="150506" name="玛多" weatherCode="101150506"/> <county id="150507" name="多县" weatherCode="101150507"/> <county id="150508" name="玛沁" weatherCode="101150508"/> </city> <city id="1506" name="玉树"> <county id="150601" name="玉树" weatherCode="101150601"/> <county id="150602" name="称多" weatherCode="101150602"/> <county id="150603" name="治多" weatherCode="101150603"/> <county id="150604" name="杂多" weatherCode="101150604"/> <county id="150605" name="囊谦" weatherCode="101150605"/> <county id="150606" name="曲麻莱" weatherCode="101150606"/> </city> <city id="1507" name="海西"> <county id="150701" name="海西" weatherCode="101150701"/> <county id="150702" name="天峻" weatherCode="101150708"/> <county id="150703" name="乌兰" weatherCode="101150709"/> <county id="150704" name="茫崖" weatherCode="101150712"/> <county id="150705" name="大柴旦" weatherCode="101150713"/> <county id="150706" name="德令哈" weatherCode="101150716"/> </city> <city id="1508" name="海北"> <county id="150801" name="海北" weatherCode="101150801"/> <county id="150802" name="门源" weatherCode="101150802"/> <county id="150803" name="祁连" weatherCode="101150803"/> <county id="150804" name="海晏" weatherCode="101150804"/> <county id="150805" name="刚察" weatherCode="101150806"/> </city> <city id="1509" name="格尔木"> <county id="150901" name="格尔木" weatherCode="101150901"/> <county id="150902" name="都兰" weatherCode="101150902"/> </city> </province> <province id="16" name="甘肃"> <city id="1601" name="兰州"> <county id="160101" name="兰州" weatherCode="101160101"/> <county id="160102" name="皋兰" weatherCode="101160102"/> <county id="160103" name="永登" weatherCode="101160103"/> <county id="160104" name="榆中" weatherCode="101160104"/> </city> <city id="1602" name="定西"> <county id="160201" name="定西" weatherCode="101160201"/> <county id="160202" name="通渭" weatherCode="101160202"/> <county id="160203" name="陇西" weatherCode="101160203"/> <county id="160204" name="渭源" weatherCode="101160204"/> <county id="160205" name="临洮" weatherCode="101160205"/> <county id="160206" name="漳县" weatherCode="101160206"/> <county id="160207" name="岷县" weatherCode="101160207"/> <county id="160208" name="安定" weatherCode="101160208"/> </city> <city id="1603" name="平凉"> <county id="160301" name="平凉" weatherCode="101160301"/> <county id="160302" name="泾川" weatherCode="101160302"/> <county id="160303" name="灵台" weatherCode="101160303"/> <county id="160304" name="崇信" weatherCode="101160304"/> <county id="160305" name="华亭" weatherCode="101160305"/> <county id="160306" name="庄浪" weatherCode="101160306"/> <county id="160307" name="静宁" weatherCode="101160307"/> <county id="160308" name="崆峒" weatherCode="101160308"/> </city> <city id="1604" name="庆阳"> <county id="160401" name="西峰" weatherCode="101160401"/> <county id="160402" name="环县" weatherCode="101160403"/> <county id="160403" name="华池" weatherCode="101160404"/> <county id="160404" name="合水" weatherCode="101160405"/> <county id="160405" name="正宁" weatherCode="101160406"/> <county id="160406" name="宁县" weatherCode="101160407"/> <county id="160407" name="镇原" weatherCode="101160408"/> <county id="160408" name="庆城" weatherCode="101160409"/> </city> <city id="1605" name="武威"> <county id="160501" name="武威" weatherCode="101160501"/> <county id="160502" name="民勤" weatherCode="101160502"/> <county id="160503" name="古浪" weatherCode="101160503"/> <county id="160504" name="天祝" weatherCode="101160505"/> </city> <city id="1606" name="金昌"> <county id="160601" name="金昌" weatherCode="101160601"/> <county id="160602" name="永昌" weatherCode="101160602"/> </city> <city id="1607" name="张掖"> <county id="160701" name="张掖" weatherCode="101160701"/> <county id="160702" name="肃南" weatherCode="101160702"/> <county id="160703" name="民乐" weatherCode="101160703"/> <county id="160704" name="临泽" weatherCode="101160704"/> <county id="160705" name="高台" weatherCode="101160705"/> <county id="160706" name="山丹" weatherCode="101160706"/> </city> <city id="1608" name="酒泉"> <county id="160801" name="酒泉" weatherCode="101160801"/> <county id="160802" name="金塔" weatherCode="101160803"/> <county id="160803" name="阿克塞" weatherCode="101160804"/> <county id="160804" name="瓜州" weatherCode="101160805"/> <county id="160805" name="肃北" weatherCode="101160806"/> <county id="160806" name="玉门" weatherCode="101160807"/> <county id="160807" name="敦煌" weatherCode="101160808"/> </city> <city id="1609" name="天水"> <county id="160901" name="天水" weatherCode="101160901"/> <county id="160902" name="清水" weatherCode="101160903"/> <county id="160903" name="秦安" weatherCode="101160904"/> <county id="160904" name="甘谷" weatherCode="101160905"/> <county id="160905" name="武山" weatherCode="101160906"/> <county id="160906" name="张家川" weatherCode="101160907"/> <county id="160907" name="麦积" weatherCode="101160908"/> </city> <city id="1610" name="陇南"> <county id="161001" name="武都" weatherCode="101161001"/> <county id="161002" name="成县" weatherCode="101161002"/> <county id="161003" name="文县" weatherCode="101161003"/> <county id="161004" name="宕昌" weatherCode="101161004"/> <county id="161005" name="康县" weatherCode="101161005"/> <county id="161006" name="西和" weatherCode="101161006"/> <county id="161007" name="礼县" weatherCode="101161007"/> <county id="161008" name="徽县" weatherCode="101161008"/> <county id="161009" name="两当" weatherCode="101161009"/> </city> <city id="1611" name="临夏"> <county id="161101" name="临夏" weatherCode="101161101"/> <county id="161102" name="康乐" weatherCode="101161102"/> <county id="161103" name="永靖" weatherCode="101161103"/> <county id="161104" name="广河" weatherCode="101161104"/> <county id="161105" name="和政" weatherCode="101161105"/> <county id="161106" name="东乡" weatherCode="101161106"/> <county id="161107" name="积石山" weatherCode="101161107"/> </city> <city id="1612" name="甘南"> <county id="161201" name="合作" weatherCode="101161201"/> <county id="161202" name="临潭" weatherCode="101161202"/> <county id="161203" name="卓尼" weatherCode="101161203"/> <county id="161204" name="舟曲" weatherCode="101161204"/> <county id="161205" name="迭部" weatherCode="101161205"/> <county id="161206" name="玛曲" weatherCode="101161206"/> <county id="161207" name="碌曲" weatherCode="101161207"/> <county id="161208" name="夏河" weatherCode="101161208"/> </city> <city id="1613" name="白银"> <county id="161301" name="白银" weatherCode="101161301"/> <county id="161302" name="靖远" weatherCode="101161302"/> <county id="161303" name="会宁" weatherCode="101161303"/> <county id="161304" name="平川" weatherCode="101161304"/> <county id="161305" name="景泰" weatherCode="101161305"/> </city> <city id="1614" name="嘉峪关"> <county id="161401" name="嘉峪关" weatherCode="101161401"/> </city> </province> <province id="17" name="宁夏"> <city id="1701" name="银川"> <county id="170101" name="银川" weatherCode="101170101"/> <county id="170102" name="永宁" weatherCode="101170102"/> <county id="170103" name="灵武" weatherCode="101170103"/> <county id="170104" name="贺兰" weatherCode="101170104"/> </city> <city id="1702" name="石嘴山"> <county id="170201" name="石嘴山" weatherCode="101170201"/> <county id="170202" name="惠农" weatherCode="101170202"/> <county id="170203" name="平罗" weatherCode="101170203"/> <county id="170204" name="陶乐" weatherCode="101170204"/> </city> <city id="1703" name="吴忠"> <county id="170301" name="吴忠" weatherCode="101170301"/> <county id="170302" name="同心" weatherCode="101170302"/> <county id="170303" name="盐池" weatherCode="101170303"/> <county id="170304" name="青铜峡" weatherCode="101170306"/> </city> <city id="1704" name="固原"> <county id="170401" name="固原" weatherCode="101170401"/> <county id="170402" name="西吉" weatherCode="101170402"/> <county id="170403" name="隆德" weatherCode="101170403"/> <county id="170404" name="泾源" weatherCode="101170404"/> <county id="170405" name="彭阳" weatherCode="101170406"/> </city> <city id="1705" name="中卫"> <county id="170501" name="中卫" weatherCode="101170501"/> <county id="170502" name="中宁" weatherCode="101170502"/> <county id="170503" name="海原" weatherCode="101170504"/> </city> </province> <province id="18" name="河南"> <city id="1801" name="郑州"> <county id="180101" name="郑州" weatherCode="101180101"/> <county id="180102" name="巩义" weatherCode="101180102"/> <county id="180103" name="荥阳" weatherCode="101180103"/> <county id="180104" name="登封" weatherCode="101180104"/> <county id="180105" name="新密" weatherCode="101180105"/> <county id="180106" name="新郑" weatherCode="101180106"/> <county id="180107" name="中牟" weatherCode="101180107"/> <county id="180108" name="上街" weatherCode="101180108"/> </city> <city id="1802" name="安阳"> <county id="180201" name="安阳" weatherCode="101180201"/> <county id="180202" name="汤阴" weatherCode="101180202"/> <county id="180203" name="滑县" weatherCode="101180203"/> <county id="180204" name="内黄" weatherCode="101180204"/> <county id="180205" name="林州" weatherCode="101180205"/> </city> <city id="1803" name="新乡"> <county id="180301" name="新乡" weatherCode="101180301"/> <county id="180302" name="获嘉" weatherCode="101180302"/> <county id="180303" name="原阳" weatherCode="101180303"/> <county id="180304" name="辉县" weatherCode="101180304"/> <county id="180305" name="卫辉" weatherCode="101180305"/> <county id="180306" name="延津" weatherCode="101180306"/> <county id="180307" name="封丘" weatherCode="101180307"/> <county id="180308" name="长垣" weatherCode="101180308"/> </city> <city id="1804" name="许昌"> <county id="180401" name="许昌" weatherCode="101180401"/> <county id="180402" name="鄢陵" weatherCode="101180402"/> <county id="180403" name="襄城" weatherCode="101180403"/> <county id="180404" name="长葛" weatherCode="101180404"/> <county id="180405" name="禹州" weatherCode="101180405"/> </city> <city id="1805" name="平顶山"> <county id="180501" name="平顶山" weatherCode="101180501"/> <county id="180502" name="郏县" weatherCode="101180502"/> <county id="180503" name="宝丰" weatherCode="101180503"/> <county id="180504" name="汝州" weatherCode="101180504"/> <county id="180505" name="叶县" weatherCode="101180505"/> <county id="180506" name="舞钢" weatherCode="101180506"/> <county id="180507" name="鲁山" weatherCode="101180507"/> <county id="180508" name="石龙" weatherCode="101180508"/> </city> <city id="1806" name="信阳"> <county id="180601" name="信阳" weatherCode="101180601"/> <county id="180602" name="息县" weatherCode="101180602"/> <county id="180603" name="罗山" weatherCode="101180603"/> <county id="180604" name="光山" weatherCode="101180604"/> <county id="180605" name="新县" weatherCode="101180605"/> <county id="180606" name="淮滨" weatherCode="101180606"/> <county id="180607" name="潢川" weatherCode="101180607"/> <county id="180608" name="固始" weatherCode="101180608"/> <county id="180609" name="商城" weatherCode="101180609"/> </city> <city id="1807" name="南阳"> <county id="180701" name="南阳" weatherCode="101180701"/> <county id="180702" name="南召" weatherCode="101180702"/> <county id="180703" name="方城" weatherCode="101180703"/> <county id="180704" name="社旗" weatherCode="101180704"/> <county id="180705" name="西峡" weatherCode="101180705"/> <county id="180706" name="内乡" weatherCode="101180706"/> <county id="180707" name="镇平" weatherCode="101180707"/> <county id="180708" name="淅川" weatherCode="101180708"/> <county id="180709" name="新野" weatherCode="101180709"/> <county id="180710" name="唐河" weatherCode="101180710"/> <county id="180711" name="邓州" weatherCode="101180711"/> <county id="180712" name="桐柏" weatherCode="101180712"/> </city> <city id="1808" name="开封"> <county id="180801" name="开封" weatherCode="101180801"/> <county id="180802" name="杞县" weatherCode="101180802"/> <county id="180803" name="尉氏" weatherCode="101180803"/> <county id="180804" name="通许" weatherCode="101180804"/> <county id="180805" name="兰考" weatherCode="101180805"/> </city> <city id="1809" name="洛阳"> <county id="180901" name="洛阳" weatherCode="101180901"/> <county id="180902" name="新安" weatherCode="101180902"/> <county id="180903" name="孟津" weatherCode="101180903"/> <county id="180904" name="宜阳" weatherCode="101180904"/> <county id="180905" name="洛宁" weatherCode="101180905"/> <county id="180906" name="伊川" weatherCode="101180906"/> <county id="180907" name="嵩县" weatherCode="101180907"/> <county id="180908" name="偃师" weatherCode="101180908"/> <county id="180909" name="栾川" weatherCode="101180909"/> <county id="180910" name="汝阳" weatherCode="101180910"/> <county id="180911" name="吉利" weatherCode="101180911"/> </city> <city id="1810" name="商丘"> <county id="181001" name="商丘" weatherCode="101181001"/> <county id="181002" name="睢县" weatherCode="101181003"/> <county id="181003" name="民权" weatherCode="101181004"/> <county id="181004" name="虞城" weatherCode="101181005"/> <county id="181005" name="柘城" weatherCode="101181006"/> <county id="181006" name="宁陵" weatherCode="101181007"/> <county id="181007" name="夏邑" weatherCode="101181008"/> <county id="181008" name="永城" weatherCode="101181009"/> </city> <city id="1811" name="焦作"> <county id="181101" name="焦作" weatherCode="101181101"/> <county id="181102" name="修武" weatherCode="101181102"/> <county id="181103" name="武陟" weatherCode="101181103"/> <county id="181104" name="沁阳" weatherCode="101181104"/> <county id="181105" name="博爱" weatherCode="101181106"/> <county id="181106" name="温县" weatherCode="101181107"/> <county id="181107" name="孟州" weatherCode="101181108"/> </city> <city id="1812" name="鹤壁"> <county id="181201" name="鹤壁" weatherCode="101181201"/> <county id="181202" name="浚县" weatherCode="101181202"/> <county id="181203" name="淇县" weatherCode="101181203"/> </city> <city id="1813" name="濮阳"> <county id="181301" name="濮阳" weatherCode="101181301"/> <county id="181302" name="台前" weatherCode="101181302"/> <county id="181303" name="南乐" weatherCode="101181303"/> <county id="181304" name="清丰" weatherCode="101181304"/> <county id="181305" name="范县" weatherCode="101181305"/> </city> <city id="1814" name="周口"> <county id="181401" name="周口" weatherCode="101181401"/> <county id="181402" name="扶沟" weatherCode="101181402"/> <county id="181403" name="太康" weatherCode="101181403"/> <county id="181404" name="淮阳" weatherCode="101181404"/> <county id="181405" name="西华" weatherCode="101181405"/> <county id="181406" name="商水" weatherCode="101181406"/> <county id="181407" name="项城" weatherCode="101181407"/> <county id="181408" name="郸城" weatherCode="101181408"/> <county id="181409" name="鹿邑" weatherCode="101181409"/> <county id="181410" name="沈丘" weatherCode="101181410"/> </city> <city id="1815" name="漯河"> <county id="181501" name="漯河" weatherCode="101181501"/> <county id="181502" name="临颍" weatherCode="101181502"/> <county id="181503" name="舞阳" weatherCode="101181503"/> </city> <city id="1816" name="驻马店"> <county id="181601" name="驻马店" weatherCode="101181601"/> <county id="181602" name="西平" weatherCode="101181602"/> <county id="181603" name="遂平" weatherCode="101181603"/> <county id="181604" name="上蔡" weatherCode="101181604"/> <county id="181605" name="汝南" weatherCode="101181605"/> <county id="181606" name="泌阳" weatherCode="101181606"/> <county id="181607" name="平舆" weatherCode="101181607"/> <county id="181608" name="新蔡" weatherCode="101181608"/> <county id="181609" name="确山" weatherCode="101181609"/> <county id="181610" name="正阳" weatherCode="101181610"/> </city> <city id="1817" name="三门峡"> <county id="181701" name="三门峡" weatherCode="101181701"/> <county id="181702" name="灵宝" weatherCode="101181702"/> <county id="181703" name="渑池" weatherCode="101181703"/> <county id="181704" name="卢氏" weatherCode="101181704"/> <county id="181705" name="义马" weatherCode="101181705"/> <county id="181706" name="陕县" weatherCode="101181706"/> </city> <city id="1818" name="济源"> <county id="181801" name="济源" weatherCode="101181801"/> </city> </province> <province id="19" name="江苏"> <city id="1901" name="南京"> <county id="190101" name="南京" weatherCode="101190101"/> <county id="190102" name="溧水" weatherCode="101190102"/> <county id="190103" name="高淳" weatherCode="101190103"/> <county id="190104" name="江宁" weatherCode="101190104"/> <county id="190105" name="六合" weatherCode="101190105"/> <county id="190106" name="江浦" weatherCode="101190106"/> <county id="190107" name="浦口" weatherCode="101190107"/> </city> <city id="1902" name="无锡"> <county id="190201" name="无锡" weatherCode="101190201"/> <county id="190202" name="江阴" weatherCode="101190202"/> <county id="190203" name="宜兴" weatherCode="101190203"/> <county id="190204" name="锡山" weatherCode="101190204"/> </city> <city id="1903" name="镇江"> <county id="190301" name="镇江" weatherCode="101190301"/> <county id="190302" name="丹阳" weatherCode="101190302"/> <county id="190303" name="扬中" weatherCode="101190303"/> <county id="190304" name="句容" weatherCode="101190304"/> <county id="190305" name="丹徒" weatherCode="101190305"/> </city> <city id="1904" name="苏州"> <county id="190401" name="苏州" weatherCode="101190401"/> <county id="190402" name="常熟" weatherCode="101190402"/> <county id="190403" name="张家港" weatherCode="101190403"/> <county id="190404" name="昆山" weatherCode="101190404"/> <county id="190405" name="吴中" weatherCode="101190405"/> <county id="190406" name="吴江" weatherCode="101190407"/> <county id="190407" name="太仓" weatherCode="101190408"/> </city> <city id="1905" name="南通"> <county id="190501" name="南通" weatherCode="101190501"/> <county id="190502" name="海安" weatherCode="101190502"/> <county id="190503" name="如皋" weatherCode="101190503"/> <county id="190504" name="如东" weatherCode="101190504"/> <county id="190505" name="启东" weatherCode="101190507"/> <county id="190506" name="海门" weatherCode="101190508"/> <county id="190507" name="通州" weatherCode="101190509"/> </city> <city id="1906" name="扬州"> <county id="190601" name="扬州" weatherCode="101190601"/> <county id="190602" name="宝应" weatherCode="101190602"/> <county id="190603" name="仪征" weatherCode="101190603"/> <county id="190604" name="高邮" weatherCode="101190604"/> <county id="190605" name="江都" weatherCode="101190605"/> <county id="190606" name="邗江" weatherCode="101190606"/> </city> <city id="1907" name="盐城"> <county id="190701" name="盐城" weatherCode="101190701"/> <county id="190702" name="响水" weatherCode="101190702"/> <county id="190703" name="滨海" weatherCode="101190703"/> <county id="190704" name="阜宁" weatherCode="101190704"/> <county id="190705" name="射阳" weatherCode="101190705"/> <county id="190706" name="建湖" weatherCode="101190706"/> <county id="190707" name="东台" weatherCode="101190707"/> <county id="190708" name="大丰" weatherCode="101190708"/> <county id="190709" name="盐都" weatherCode="101190709"/> </city> <city id="1908" name="徐州"> <county id="190801" name="徐州" weatherCode="101190801"/> <county id="190802" name="铜山" weatherCode="101190802"/> <county id="190803" name="丰县" weatherCode="101190803"/> <county id="190804" name="沛县" weatherCode="101190804"/> <county id="190805" name="邳州" weatherCode="101190805"/> <county id="190806" name="睢宁" weatherCode="101190806"/> <county id="190807" name="新沂" weatherCode="101190807"/> </city> <city id="1909" name="淮安"> <county id="190901" name="淮安" weatherCode="101190901"/> <county id="190902" name="金湖" weatherCode="101190902"/> <county id="190903" name="盱眙" weatherCode="101190903"/> <county id="190904" name="洪泽" weatherCode="101190904"/> <county id="190905" name="涟水" weatherCode="101190905"/> <county id="190906" name="淮阴区" weatherCode="101190906"/> <county id="190907" name="淮安区" weatherCode="101190908"/> </city> <city id="1910" name="连云港"> <county id="191001" name="连云港" weatherCode="101191001"/> <county id="191002" name="东海" weatherCode="101191002"/> <county id="191003" name="赣榆" weatherCode="101191003"/> <county id="191004" name="灌云" weatherCode="101191004"/> <county id="191005" name="灌南" weatherCode="101191005"/> </city> <city id="1911" name="常州"> <county id="191101" name="常州" weatherCode="101191101"/> <county id="191102" name="溧阳" weatherCode="101191102"/> <county id="191103" name="金坛" weatherCode="101191103"/> <county id="191104" name="武进" weatherCode="101191104"/> </city> <city id="1912" name="泰州"> <county id="191201" name="泰州" weatherCode="101191201"/> <county id="191202" name="兴化" weatherCode="101191202"/> <county id="191203" name="泰兴" weatherCode="101191203"/> <county id="191204" name="姜堰" weatherCode="101191204"/> <county id="191205" name="靖江" weatherCode="101191205"/> </city> <city id="1913" name="宿迁"> <county id="191301" name="宿迁" weatherCode="101191301"/> <county id="191302" name="沭阳" weatherCode="101191302"/> <county id="191303" name="泗阳" weatherCode="101191303"/> <county id="191304" name="泗洪" weatherCode="101191304"/> <county id="191305" name="宿豫" weatherCode="101191305"/> </city> </province> <province id="20" name="湖北"> <city id="2001" name="武汉"> <county id="200101" name="武汉" weatherCode="101200101"/> <county id="200102" name="蔡甸" weatherCode="101200102"/> <county id="200103" name="黄陂" weatherCode="101200103"/> <county id="200104" name="新洲" weatherCode="101200104"/> <county id="200105" name="江夏" weatherCode="101200105"/> <county id="200106" name="东西湖" weatherCode="101200106"/> </city> <city id="2002" name="襄阳"> <county id="200201" name="襄阳" weatherCode="101200201"/> <county id="200202" name="襄州" weatherCode="101200202"/> <county id="200203" name="保康" weatherCode="101200203"/> <county id="200204" name="南漳" weatherCode="101200204"/> <county id="200205" name="宜城" weatherCode="101200205"/> <county id="200206" name="老河口" weatherCode="101200206"/> <county id="200207" name="谷城" weatherCode="101200207"/> <county id="200208" name="枣阳" weatherCode="101200208"/> </city> <city id="2003" name="鄂州"> <county id="200301" name="鄂州" weatherCode="101200301"/> <county id="200302" name="梁子湖" weatherCode="101200302"/> </city> <city id="2004" name="孝感"> <county id="200401" name="孝感" weatherCode="101200401"/> <county id="200402" name="安陆" weatherCode="101200402"/> <county id="200403" name="云梦" weatherCode="101200403"/> <county id="200404" name="大悟" weatherCode="101200404"/> <county id="200405" name="应城" weatherCode="101200405"/> <county id="200406" name="汉川" weatherCode="101200406"/> <county id="200407" name="孝昌" weatherCode="101200407"/> </city> <city id="2005" name="黄冈"> <county id="200501" name="黄冈" weatherCode="101200501"/> <county id="200502" name="红安" weatherCode="101200502"/> <county id="200503" name="麻城" weatherCode="101200503"/> <county id="200504" name="罗田" weatherCode="101200504"/> <county id="200505" name="英山" weatherCode="101200505"/> <county id="200506" name="浠水" weatherCode="101200506"/> <county id="200507" name="蕲春" weatherCode="101200507"/> <county id="200508" name="黄梅" weatherCode="101200508"/> <county id="200509" name="武穴" weatherCode="101200509"/> <county id="200510" name="团风" weatherCode="101200510"/> </city> <city id="2006" name="黄石"> <county id="200601" name="黄石" weatherCode="101200601"/> <county id="200602" name="大冶" weatherCode="101200602"/> <county id="200603" name="阳新" weatherCode="101200603"/> <county id="200604" name="铁山" weatherCode="101200604"/> <county id="200605" name="下陆" weatherCode="101200605"/> <county id="200606" name="西塞山" weatherCode="101200606"/> </city> <city id="2007" name="咸宁"> <county id="200701" name="咸宁" weatherCode="101200701"/> <county id="200702" name="赤壁" weatherCode="101200702"/> <county id="200703" name="嘉鱼" weatherCode="101200703"/> <county id="200704" name="崇阳" weatherCode="101200704"/> <county id="200705" name="通城" weatherCode="101200705"/> <county id="200706" name="通山" weatherCode="101200706"/> </city> <city id="2008" name="荆州"> <county id="200801" name="荆州" weatherCode="101200801"/> <county id="200802" name="江陵" weatherCode="101200802"/> <county id="200803" name="公安" weatherCode="101200803"/> <county id="200804" name="石首" weatherCode="101200804"/> <county id="200805" name="监利" weatherCode="101200805"/> <county id="200806" name="洪湖" weatherCode="101200806"/> <county id="200807" name="松滋" weatherCode="101200807"/> <county id="200808" name="沙市" weatherCode="101201406"/> </city> <city id="2009" name="宜昌"> <county id="200901" name="宜昌" weatherCode="101200901"/> <county id="200902" name="远安" weatherCode="101200902"/> <county id="200903" name="秭归" weatherCode="101200903"/> <county id="200904" name="兴山" weatherCode="101200904"/> <county id="200905" name="五峰" weatherCode="101200906"/> <county id="200906" name="当阳" weatherCode="101200907"/> <county id="200907" name="长阳" weatherCode="101200908"/> <county id="200908" name="宜都" weatherCode="101200909"/> <county id="200909" name="枝江" weatherCode="101200910"/> <county id="200910" name="三峡" weatherCode="101200911"/> <county id="200911" name="夷陵" weatherCode="101200912"/> </city> <city id="2010" name="恩施"> <county id="201001" name="恩施" weatherCode="101201001"/> <county id="201002" name="利川" weatherCode="101201002"/> <county id="201003" name="建始" weatherCode="101201003"/> <county id="201004" name="咸丰" weatherCode="101201004"/> <county id="201005" name="宣恩" weatherCode="101201005"/> <county id="201006" name="鹤峰" weatherCode="101201006"/> <county id="201007" name="来凤" weatherCode="101201007"/> <county id="201008" name="巴东" weatherCode="101201008"/> </city> <city id="2011" name="十堰"> <county id="201101" name="十堰" weatherCode="101201101"/> <county id="201102" name="竹溪" weatherCode="101201102"/> <county id="201103" name="郧西" weatherCode="101201103"/> <county id="201104" name="郧县" weatherCode="101201104"/> <county id="201105" name="竹山" weatherCode="101201105"/> <county id="201106" name="房县" weatherCode="101201106"/> <county id="201107" name="丹江口" weatherCode="101201107"/> <county id="201108" name="茅箭" weatherCode="101201108"/> <county id="201109" name="张湾" weatherCode="101201109"/> </city> <city id="2012" name="神农架"> <county id="201201" name="神农架" weatherCode="101201201"/> </city> <city id="2013" name="随州"> <county id="201301" name="随州" weatherCode="101201301"/> <county id="201302" name="广水" weatherCode="101201302"/> </city> <city id="2014" name="荆门"> <county id="201401" name="荆门" weatherCode="101201401"/> <county id="201402" name="钟祥" weatherCode="101201402"/> <county id="201403" name="京山" weatherCode="101201403"/> <county id="201404" name="掇刀" weatherCode="101201404"/> <county id="201405" name="沙洋" weatherCode="101201405"/> </city> <city id="2015" name="天门"> <county id="201501" name="天门" weatherCode="101201501"/> </city> <city id="2016" name="仙桃"> <county id="201601" name="仙桃" weatherCode="101201601"/> </city> <city id="2017" name="潜江"> <county id="201701" name="潜江" weatherCode="101201701"/> </city> </province> <province id="21" name="浙江"> <city id="2101" name="杭州"> <county id="210101" name="杭州" weatherCode="101210101"/> <county id="210102" name="萧山" weatherCode="101210102"/> <county id="210103" name="桐庐" weatherCode="101210103"/> <county id="210104" name="淳安" weatherCode="101210104"/> <county id="210105" name="建德" weatherCode="101210105"/> <county id="210106" name="余杭" weatherCode="101210106"/> <county id="210107" name="临安" weatherCode="101210107"/> <county id="210108" name="富阳" weatherCode="101210108"/> </city> <city id="2102" name="湖州"> <county id="210201" name="湖州" weatherCode="101210201"/> <county id="210202" name="长兴" weatherCode="101210202"/> <county id="210203" name="安吉" weatherCode="101210203"/> <county id="210204" name="德清" weatherCode="101210204"/> </city> <city id="2103" name="嘉兴"> <county id="210301" name="嘉兴" weatherCode="101210301"/> <county id="210302" name="嘉善" weatherCode="101210302"/> <county id="210303" name="海宁" weatherCode="101210303"/> <county id="210304" name="桐乡" weatherCode="101210304"/> <county id="210305" name="平湖" weatherCode="101210305"/> <county id="210306" name="海盐" weatherCode="101210306"/> </city> <city id="2104" name="宁波"> <county id="210401" name="宁波" weatherCode="101210401"/> <county id="210402" name="慈溪" weatherCode="101210403"/> <county id="210403" name="余姚" weatherCode="101210404"/> <county id="210404" name="奉化" weatherCode="101210405"/> <county id="210405" name="象山" weatherCode="101210406"/> <county id="210406" name="宁海" weatherCode="101210408"/> <county id="210407" name="北仑" weatherCode="101210410"/> <county id="210408" name="鄞州" weatherCode="101210411"/> <county id="210409" name="镇海" weatherCode="101210412"/> </city> <city id="2105" name="绍兴"> <county id="210501" name="绍兴" weatherCode="101210501"/> <county id="210502" name="诸暨" weatherCode="101210502"/> <county id="210503" name="上虞" weatherCode="101210503"/> <county id="210504" name="新昌" weatherCode="101210504"/> <county id="210505" name="嵊州" weatherCode="101210505"/> </city> <city id="2106" name="台州"> <county id="210601" name="台州" weatherCode="101210601"/> <county id="210602" name="玉环" weatherCode="101210603"/> <county id="210603" name="三门" weatherCode="101210604"/> <county id="210604" name="天台" weatherCode="101210605"/> <county id="210605" name="仙居" weatherCode="101210606"/> <county id="210606" name="温岭" weatherCode="101210607"/> <county id="210607" name="洪家" weatherCode="101210609"/> <county id="210608" name="临海" weatherCode="101210610"/> <county id="210609" name="椒江" weatherCode="101210611"/> <county id="210610" name="黄岩" weatherCode="101210612"/> <county id="210611" name="路桥" weatherCode="101210613"/> </city> <city id="2107" name="温州"> <county id="210701" name="温州" weatherCode="101210701"/> <county id="210702" name="泰顺" weatherCode="101210702"/> <county id="210703" name="文成" weatherCode="101210703"/> <county id="210704" name="平阳" weatherCode="101210704"/> <county id="210705" name="瑞安" weatherCode="101210705"/> <county id="210706" name="洞头" weatherCode="101210706"/> <county id="210707" name="乐清" weatherCode="101210707"/> <county id="210708" name="永嘉" weatherCode="101210708"/> <county id="210709" name="苍南" weatherCode="101210709"/> </city> <city id="2108" name="丽水"> <county id="210801" name="丽水" weatherCode="101210801"/> <county id="210802" name="遂昌" weatherCode="101210802"/> <county id="210803" name="龙泉" weatherCode="101210803"/> <county id="210804" name="缙云" weatherCode="101210804"/> <county id="210805" name="青田" weatherCode="101210805"/> <county id="210806" name="云和" weatherCode="101210806"/> <county id="210807" name="庆元" weatherCode="101210807"/> <county id="210808" name="松阳" weatherCode="101210808"/> <county id="210809" name="景宁" weatherCode="101210809"/> </city> <city id="2109" name="金华"> <county id="210901" name="金华" weatherCode="101210901"/> <county id="210902" name="浦江" weatherCode="101210902"/> <county id="210903" name="兰溪" weatherCode="101210903"/> <county id="210904" name="义乌" weatherCode="101210904"/> <county id="210905" name="东阳" weatherCode="101210905"/> <county id="210906" name="武义" weatherCode="101210906"/> <county id="210907" name="永康" weatherCode="101210907"/> <county id="210908" name="磐安" weatherCode="101210908"/> </city> <city id="2110" name="衢州"> <county id="211001" name="衢州" weatherCode="101211001"/> <county id="211002" name="常山" weatherCode="101211002"/> <county id="211003" name="开化" weatherCode="101211003"/> <county id="211004" name="龙游" weatherCode="101211004"/> <county id="211005" name="江山" weatherCode="101211005"/> <county id="211006" name="衢江" weatherCode="101211006"/> </city> <city id="2111" name="舟山"> <county id="211101" name="舟山" weatherCode="101211101"/> <county id="211102" name="嵊泗" weatherCode="101211102"/> <county id="211103" name="岱山" weatherCode="101211104"/> <county id="211104" name="普陀" weatherCode="101211105"/> <county id="211105" name="定海" weatherCode="101211106"/> </city> </province> <province id="22" name="安徽"> <city id="2201" name="合肥"> <county id="220101" name="合肥" weatherCode="101220101"/> <county id="220102" name="长丰" weatherCode="101220102"/> <county id="220103" name="肥东" weatherCode="101220103"/> <county id="220104" name="肥西" weatherCode="101220104"/> </city> <city id="2202" name="蚌埠"> <county id="220201" name="蚌埠" weatherCode="101220201"/> <county id="220202" name="怀远" weatherCode="101220202"/> <county id="220203" name="固镇" weatherCode="101220203"/> <county id="220204" name="五河" weatherCode="101220204"/> </city> <city id="2203" name="芜湖"> <county id="220301" name="芜湖" weatherCode="101220301"/> <county id="220302" name="繁昌" weatherCode="101220302"/> <county id="220303" name="芜湖县" weatherCode="101220303"/> <county id="220304" name="南陵" weatherCode="101220304"/> </city> <city id="2204" name="淮南"> <county id="220401" name="淮南" weatherCode="101220401"/> <county id="220402" name="凤台" weatherCode="101220402"/> <county id="220403" name="潘集" weatherCode="101220403"/> </city> <city id="2205" name="马鞍山"> <county id="220501" name="马鞍山" weatherCode="101220501"/> <county id="220502" name="当涂" weatherCode="101220502"/> </city> <city id="2206" name="安庆"> <county id="220601" name="安庆" weatherCode="101220601"/> <county id="220602" name="枞阳" weatherCode="101220602"/> <county id="220603" name="太湖" weatherCode="101220603"/> <county id="220604" name="潜山" weatherCode="101220604"/> <county id="220605" name="怀宁" weatherCode="101220605"/> <county id="220606" name="宿松" weatherCode="101220606"/> <county id="220607" name="望江" weatherCode="101220607"/> <county id="220608" name="岳西" weatherCode="101220608"/> <county id="220609" name="桐城" weatherCode="101220609"/> </city> <city id="2207" name="宿州"> <county id="220701" name="宿州" weatherCode="101220701"/> <county id="220702" name="砀山" weatherCode="101220702"/> <county id="220703" name="灵璧" weatherCode="101220703"/> <county id="220704" name="泗县" weatherCode="101220704"/> <county id="220705" name="萧县" weatherCode="101220705"/> </city> <city id="2208" name="阜阳"> <county id="220801" name="阜阳" weatherCode="101220801"/> <county id="220802" name="阜南" weatherCode="101220802"/> <county id="220803" name="颍上" weatherCode="101220803"/> <county id="220804" name="临泉" weatherCode="101220804"/> <county id="220805" name="界首" weatherCode="101220805"/> <county id="220806" name="太和" weatherCode="101220806"/> </city> <city id="2209" name="亳州"> <county id="220901" name="亳州" weatherCode="101220901"/> <county id="220902" name="涡阳" weatherCode="101220902"/> <county id="220903" name="利辛" weatherCode="101220903"/> <county id="220904" name="蒙城" weatherCode="101220904"/> </city> <city id="2210" name="黄山"> <county id="221001" name="黄山市" weatherCode="101221001"/> <county id="221002" name="黄山区" weatherCode="101221002"/> <county id="221003" name="屯溪" weatherCode="101221003"/> <county id="221004" name="祁门" weatherCode="101221004"/> <county id="221005" name="黟县" weatherCode="101221005"/> <county id="221006" name="歙县" weatherCode="101221006"/> <county id="221007" name="休宁" weatherCode="101221007"/> <county id="221008" name="黄山风景区" weatherCode="101221008"/> </city> <city id="2211" name="滁州"> <county id="221101" name="滁州" weatherCode="101221101"/> <county id="221102" name="凤阳" weatherCode="101221102"/> <county id="221103" name="明光" weatherCode="101221103"/> <county id="221104" name="定远" weatherCode="101221104"/> <county id="221105" name="全椒" weatherCode="101221105"/> <county id="221106" name="来安" weatherCode="101221106"/> <county id="221107" name="天长" weatherCode="101221107"/> </city> <city id="2212" name="淮北"> <county id="221201" name="淮北" weatherCode="101221201"/> <county id="221202" name="濉溪" weatherCode="101221202"/> </city> <city id="2213" name="铜陵"> <county id="221301" name="铜陵" weatherCode="101221301"/> </city> <city id="2214" name="宣城"> <county id="221401" name="宣城" weatherCode="101221401"/> <county id="221402" name="泾县" weatherCode="101221402"/> <county id="221403" name="旌德" weatherCode="101221403"/> <county id="221404" name="宁国" weatherCode="101221404"/> <county id="221405" name="绩溪" weatherCode="101221405"/> <county id="221406" name="广德" weatherCode="101221406"/> <county id="221407" name="郎溪" weatherCode="101221407"/> </city> <city id="2215" name="六安"> <county id="221501" name="六安" weatherCode="101221501"/> <county id="221502" name="霍邱" weatherCode="101221502"/> <county id="221503" name="寿县" weatherCode="101221503"/> <county id="221504" name="金寨" weatherCode="101221505"/> <county id="221505" name="霍山" weatherCode="101221506"/> <county id="221506" name="舒城" weatherCode="101221507"/> </city> <city id="2216" name="巢湖"> <county id="221601" name="巢湖" weatherCode="101221601"/> <county id="221602" name="庐江" weatherCode="101221602"/> <county id="221603" name="无为" weatherCode="101221603"/> <county id="221604" name="含山" weatherCode="101221604"/> <county id="221605" name="和县" weatherCode="101221605"/> </city> <city id="2217" name="池州"> <county id="221701" name="池州" weatherCode="101221701"/> <county id="221702" name="东至" weatherCode="101221702"/> <county id="221703" name="青阳" weatherCode="101221703"/> <county id="221704" name="九华山" weatherCode="101221704"/> <county id="221705" name="石台" weatherCode="101221705"/> </city> </province> <province id="23" name="福建"> <city id="2301" name="福州"> <county id="230101" name="福州" weatherCode="101230101"/> <county id="230102" name="闽清" weatherCode="101230102"/> <county id="230103" name="闽侯" weatherCode="101230103"/> <county id="230104" name="罗源" weatherCode="101230104"/> <county id="230105" name="连江" weatherCode="101230105"/> <county id="230106" name="永泰" weatherCode="101230107"/> <county id="230107" name="平潭" weatherCode="101230108"/> <county id="230108" name="长乐" weatherCode="101230110"/> <county id="230109" name="福清" weatherCode="101230111"/> </city> <city id="2302" name="厦门"> <county id="230201" name="厦门" weatherCode="101230201"/> <county id="230202" name="同安" weatherCode="101230202"/> </city> <city id="2303" name="宁德"> <county id="230301" name="宁德" weatherCode="101230301"/> <county id="230302" name="古田" weatherCode="101230302"/> <county id="230303" name="霞浦" weatherCode="101230303"/> <county id="230304" name="寿宁" weatherCode="101230304"/> <county id="230305" name="周宁" weatherCode="101230305"/> <county id="230306" name="福安" weatherCode="101230306"/> <county id="230307" name="柘荣" weatherCode="101230307"/> <county id="230308" name="福鼎" weatherCode="101230308"/> <county id="230309" name="屏南" weatherCode="101230309"/> </city> <city id="2304" name="莆田"> <county id="230401" name="莆田" weatherCode="101230401"/> <county id="230402" name="仙游" weatherCode="101230402"/> <county id="230403" name="秀屿港" weatherCode="101230403"/> <county id="230404" name="涵江" weatherCode="101230404"/> <county id="230405" name="秀屿" weatherCode="101230405"/> <county id="230406" name="荔城" weatherCode="101230406"/> <county id="230407" name="城厢" weatherCode="101230407"/> </city> <city id="2305" name="泉州"> <county id="230501" name="泉州" weatherCode="101230501"/> <county id="230502" name="安溪" weatherCode="101230502"/> <county id="230503" name="永春" weatherCode="101230504"/> <county id="230504" name="德化" weatherCode="101230505"/> <county id="230505" name="南安" weatherCode="101230506"/> <county id="230506" name="崇武" weatherCode="101230507"/> <county id="230507" name="惠安" weatherCode="101230508"/> <county id="230508" name="晋江" weatherCode="101230509"/> <county id="230509" name="石狮" weatherCode="101230510"/> </city> <city id="2306" name="漳州"> <county id="230601" name="漳州" weatherCode="101230601"/> <county id="230602" name="长泰" weatherCode="101230602"/> <county id="230603" name="南靖" weatherCode="101230603"/> <county id="230604" name="平和" weatherCode="101230604"/> <county id="230605" name="龙海" weatherCode="101230605"/> <county id="230606" name="漳浦" weatherCode="101230606"/> <county id="230607" name="诏安" weatherCode="101230607"/> <county id="230608" name="东山" weatherCode="101230608"/> <county id="230609" name="云霄" weatherCode="101230609"/> <county id="230610" name="华安" weatherCode="101230610"/> </city> <city id="2307" name="龙岩"> <county id="230701" name="龙岩" weatherCode="101230701"/> <county id="230702" name="长汀" weatherCode="101230702"/> <county id="230703" name="连城" weatherCode="101230703"/> <county id="230704" name="武平" weatherCode="101230704"/> <county id="230705" name="上杭" weatherCode="101230705"/> <county id="230706" name="永定" weatherCode="101230706"/> <county id="230707" name="漳平" weatherCode="101230707"/> </city> <city id="2308" name="三明"> <county id="230801" name="三明" weatherCode="101230801"/> <county id="230802" name="宁化" weatherCode="101230802"/> <county id="230803" name="清流" weatherCode="101230803"/> <county id="230804" name="泰宁" weatherCode="101230804"/> <county id="230805" name="将乐" weatherCode="101230805"/> <county id="230806" name="建宁" weatherCode="101230806"/> <county id="230807" name="明溪" weatherCode="101230807"/> <county id="230808" name="沙县" weatherCode="101230808"/> <county id="230809" name="尤溪" weatherCode="101230809"/> <county id="230810" name="永安" weatherCode="101230810"/> <county id="230811" name="大田" weatherCode="101230811"/> </city> <city id="2309" name="南平"> <county id="230901" name="南平" weatherCode="101230901"/> <county id="230902" name="顺昌" weatherCode="101230902"/> <county id="230903" name="光泽" weatherCode="101230903"/> <county id="230904" name="邵武" weatherCode="101230904"/> <county id="230905" name="武夷山" weatherCode="101230905"/> <county id="230906" name="浦城" weatherCode="101230906"/> <county id="230907" name="建阳" weatherCode="101230907"/> <county id="230908" name="松溪" weatherCode="101230908"/> <county id="230909" name="政和" weatherCode="101230909"/> <county id="230910" name="建瓯" weatherCode="101230910"/> </city> </province> <province id="24" name="江西"> <city id="2401" name="南昌"> <county id="240101" name="南昌" weatherCode="101240101"/> <county id="240102" name="新建" weatherCode="101240102"/> <county id="240103" name="南昌县" weatherCode="101240103"/> <county id="240104" name="安义" weatherCode="101240104"/> <county id="240105" name="进贤" weatherCode="101240105"/> </city> <city id="2402" name="九江"> <county id="240201" name="九江" weatherCode="101240201"/> <county id="240202" name="瑞昌" weatherCode="101240202"/> <county id="240203" name="庐山" weatherCode="101240203"/> <county id="240204" name="武宁" weatherCode="101240204"/> <county id="240205" name="德安" weatherCode="101240205"/> <county id="240206" name="永修" weatherCode="101240206"/> <county id="240207" name="湖口" weatherCode="101240207"/> <county id="240208" name="彭泽" weatherCode="101240208"/> <county id="240209" name="星子" weatherCode="101240209"/> <county id="240210" name="都昌" weatherCode="101240210"/> <county id="240211" name="修水" weatherCode="101240212"/> </city> <city id="2403" name="上饶"> <county id="240301" name="上饶" weatherCode="101240301"/> <county id="240302" name="鄱阳" weatherCode="101240302"/> <county id="240303" name="婺源" weatherCode="101240303"/> <county id="240304" name="余干" weatherCode="101240305"/> <county id="240305" name="万年" weatherCode="101240306"/> <county id="240306" name="德兴" weatherCode="101240307"/> <county id="240307" name="上饶县" weatherCode="101240308"/> <county id="240308" name="弋阳" weatherCode="101240309"/> <county id="240309" name="横峰" weatherCode="101240310"/> <county id="240310" name="铅山" weatherCode="101240311"/> <county id="240311" name="玉山" weatherCode="101240312"/> <county id="240312" name="广丰" weatherCode="101240313"/> </city> <city id="2404" name="抚州"> <county id="240401" name="抚州" weatherCode="101240401"/> <county id="240402" name="广昌" weatherCode="101240402"/> <county id="240403" name="乐安" weatherCode="101240403"/> <county id="240404" name="崇仁" weatherCode="101240404"/> <county id="240405" name="金溪" weatherCode="101240405"/> <county id="240406" name="资溪" weatherCode="101240406"/> <county id="240407" name="宜黄" weatherCode="101240407"/> <county id="240408" name="南城" weatherCode="101240408"/> <county id="240409" name="南丰" weatherCode="101240409"/> <county id="240410" name="黎川" weatherCode="101240410"/> <county id="240411" name="东乡" weatherCode="101240411"/> </city> <city id="2405" name="宜春"> <county id="240501" name="宜春" weatherCode="101240501"/> <county id="240502" name="铜鼓" weatherCode="101240502"/> <county id="240503" name="宜丰" weatherCode="101240503"/> <county id="240504" name="万载" weatherCode="101240504"/> <county id="240505" name="上高" weatherCode="101240505"/> <county id="240506" name="靖安" weatherCode="101240506"/> <county id="240507" name="奉新" weatherCode="101240507"/> <county id="240508" name="高安" weatherCode="101240508"/> <county id="240509" name="樟树" weatherCode="101240509"/> <county id="240510" name="丰城" weatherCode="101240510"/> </city> <city id="2406" name="吉安"> <county id="240601" name="吉安" weatherCode="101240601"/> <county id="240602" name="吉安县" weatherCode="101240602"/> <county id="240603" name="吉水" weatherCode="101240603"/> <county id="240604" name="新干" weatherCode="101240604"/> <county id="240605" name="峡江" weatherCode="101240605"/> <county id="240606" name="永丰" weatherCode="101240606"/> <county id="240607" name="永新" weatherCode="101240607"/> <county id="240608" name="井冈山" weatherCode="101240608"/> <county id="240609" name="万安" weatherCode="101240609"/> <county id="240610" name="遂川" weatherCode="101240610"/> <county id="240611" name="泰和" weatherCode="101240611"/> <county id="240612" name="安福" weatherCode="101240612"/> <county id="240613" name="宁冈" weatherCode="101240613"/> </city> <city id="2407" name="赣州"> <county id="240701" name="赣州" weatherCode="101240701"/> <county id="240702" name="崇义" weatherCode="101240702"/> <county id="240703" name="上犹" weatherCode="101240703"/> <county id="240704" name="南康" weatherCode="101240704"/> <county id="240705" name="大余" weatherCode="101240705"/> <county id="240706" name="信丰" weatherCode="101240706"/> <county id="240707" name="宁都" weatherCode="101240707"/> <county id="240708" name="石城" weatherCode="101240708"/> <county id="240709" name="瑞金" weatherCode="101240709"/> <county id="240710" name="于都" weatherCode="101240710"/> <county id="240711" name="会昌" weatherCode="101240711"/> <county id="240712" name="安远" weatherCode="101240712"/> <county id="240713" name="全南" weatherCode="101240713"/> <county id="240714" name="龙南" weatherCode="101240714"/> <county id="240715" name="定南" weatherCode="101240715"/> <county id="240716" name="寻乌" weatherCode="101240716"/> <county id="240717" name="兴国" weatherCode="101240717"/> <county id="240718" name="赣县" weatherCode="101240718"/> </city> <city id="2408" name="景德镇"> <county id="240801" name="景德镇" weatherCode="101240801"/> <county id="240802" name="乐平" weatherCode="101240802"/> <county id="240803" name="浮梁" weatherCode="101240803"/> </city> <city id="2409" name="萍乡"> <county id="240901" name="萍乡" weatherCode="101240901"/> <county id="240902" name="莲花" weatherCode="101240902"/> <county id="240903" name="上栗" weatherCode="101240903"/> <county id="240904" name="安源" weatherCode="101240904"/> <county id="240905" name="芦溪" weatherCode="101240905"/> <county id="240906" name="湘东" weatherCode="101240906"/> </city> <city id="2410" name="新余"> <county id="241001" name="新余" weatherCode="101241001"/> <county id="241002" name="分宜" weatherCode="101241002"/> </city> <city id="2411" name="鹰潭"> <county id="241101" name="鹰潭" weatherCode="101241101"/> <county id="241102" name="余江" weatherCode="101241102"/> <county id="241103" name="贵溪" weatherCode="101241103"/> </city> </province> <province id="25" name="湖南"> <city id="2501" name="长沙"> <county id="250101" name="长沙" weatherCode="101250101"/> <county id="250102" name="宁乡" weatherCode="101250102"/> <county id="250103" name="浏阳" weatherCode="101250103"/> <county id="250104" name="马坡岭" weatherCode="101250104"/> <county id="250105" name="望城" weatherCode="101250105"/> </city> <city id="2502" name="湘潭"> <county id="250201" name="湘潭" weatherCode="101250201"/> <county id="250202" name="韶山" weatherCode="101250202"/> <county id="250203" name="湘乡" weatherCode="101250203"/> </city> <city id="2503" name="株洲"> <county id="250301" name="株洲" weatherCode="101250301"/> <county id="250302" name="攸县" weatherCode="101250302"/> <county id="250303" name="醴陵" weatherCode="101250303"/> <county id="250304" name="茶陵" weatherCode="101250305"/> <county id="250305" name="炎陵" weatherCode="101250306"/> </city> <city id="2504" name="衡阳"> <county id="250401" name="衡阳" weatherCode="101250401"/> <county id="250402" name="衡山" weatherCode="101250402"/> <county id="250403" name="衡东" weatherCode="101250403"/> <county id="250404" name="祁东" weatherCode="101250404"/> <county id="250405" name="衡阳县" weatherCode="101250405"/> <county id="250406" name="常宁" weatherCode="101250406"/> <county id="250407" name="衡南" weatherCode="101250407"/> <county id="250408" name="耒阳" weatherCode="101250408"/> <county id="250409" name="南岳" weatherCode="101250409"/> </city> <city id="2505" name="郴州"> <county id="250501" name="郴州" weatherCode="101250501"/> <county id="250502" name="桂阳" weatherCode="101250502"/> <county id="250503" name="嘉禾" weatherCode="101250503"/> <county id="250504" name="宜章" weatherCode="101250504"/> <county id="250505" name="临武" weatherCode="101250505"/> <county id="250506" name="资兴" weatherCode="101250507"/> <county id="250507" name="汝城" weatherCode="101250508"/> <county id="250508" name="安仁" weatherCode="101250509"/> <county id="250509" name="永兴" weatherCode="101250510"/> <county id="250510" name="桂东" weatherCode="101250511"/> <county id="250511" name="苏仙" weatherCode="101250512"/> </city> <city id="2506" name="常德"> <county id="250601" name="常德" weatherCode="101250601"/> <county id="250602" name="安乡" weatherCode="101250602"/> <county id="250603" name="桃源" weatherCode="101250603"/> <county id="250604" name="汉寿" weatherCode="101250604"/> <county id="250605" name="澧县" weatherCode="101250605"/> <county id="250606" name="临澧" weatherCode="101250606"/> <county id="250607" name="石门" weatherCode="101250607"/> <county id="250608" name="津市" weatherCode="101250608"/> </city> <city id="2507" name="益阳"> <county id="250701" name="益阳" weatherCode="101250700"/> <county id="250702" name="赫山区" weatherCode="101250701"/> <county id="250703" name="南县" weatherCode="101250702"/> <county id="250704" name="桃江" weatherCode="101250703"/> <county id="250705" name="安化" weatherCode="101250704"/> <county id="250706" name="沅江" weatherCode="101250705"/> </city> <city id="2508" name="娄底"> <county id="250801" name="娄底" weatherCode="101250801"/> <county id="250802" name="双峰" weatherCode="101250802"/> <county id="250803" name="冷水江" weatherCode="101250803"/> <county id="250804" name="新化" weatherCode="101250805"/> <county id="250805" name="涟源" weatherCode="101250806"/> </city> <city id="2509" name="邵阳"> <county id="250901" name="邵阳" weatherCode="101250901"/> <county id="250902" name="隆回" weatherCode="101250902"/> <county id="250903" name="洞口" weatherCode="101250903"/> <county id="250904" name="新邵" weatherCode="101250904"/> <county id="250905" name="邵东" weatherCode="101250905"/> <county id="250906" name="绥宁" weatherCode="101250906"/> <county id="250907" name="新宁" weatherCode="101250907"/> <county id="250908" name="武冈" weatherCode="101250908"/> <county id="250909" name="城步" weatherCode="101250909"/> <county id="250910" name="邵阳县" weatherCode="101250910"/> </city> <city id="2510" name="岳阳"> <county id="251001" name="岳阳" weatherCode="101251001"/> <county id="251002" name="华容" weatherCode="101251002"/> <county id="251003" name="湘阴" weatherCode="101251003"/> <county id="251004" name="汨罗" weatherCode="101251004"/> <county id="251005" name="平江" weatherCode="101251005"/> <county id="251006" name="临湘" weatherCode="101251006"/> </city> <city id="2511" name="张家界"> <county id="251101" name="张家界" weatherCode="101251101"/> <county id="251102" name="桑植" weatherCode="101251102"/> <county id="251103" name="慈利" weatherCode="101251103"/> <county id="251104" name="武陵源" weatherCode="101251104"/> </city> <city id="2512" name="怀化"> <county id="251201" name="怀化" weatherCode="101251201"/> <county id="251202" name="沅陵" weatherCode="101251203"/> <county id="251203" name="辰溪" weatherCode="101251204"/> <county id="251204" name="靖州" weatherCode="101251205"/> <county id="251205" name="会同" weatherCode="101251206"/> <county id="251206" name="通道" weatherCode="101251207"/> <county id="251207" name="麻阳" weatherCode="101251208"/> <county id="251208" name="新晃" weatherCode="101251209"/> <county id="251209" name="芷江" weatherCode="101251210"/> <county id="251210" name="溆浦" weatherCode="101251211"/> <county id="251211" name="中方" weatherCode="101251212"/> <county id="251212" name="洪江" weatherCode="101251213"/> </city> <city id="2513" name="永州"> <county id="251301" name="永州" weatherCode="101251401"/> <county id="251302" name="祁阳" weatherCode="101251402"/> <county id="251303" name="东安" weatherCode="101251403"/> <county id="251304" name="双牌" weatherCode="101251404"/> <county id="251305" name="道县" weatherCode="101251405"/> <county id="251306" name="宁远" weatherCode="101251406"/> <county id="251307" name="江永" weatherCode="101251407"/> <county id="251308" name="蓝山" weatherCode="101251408"/> <county id="251309" name="新田" weatherCode="101251409"/> <county id="251310" name="江华" weatherCode="101251410"/> <county id="251311" name="冷水滩" weatherCode="101251411"/> </city> <city id="2514" name="湘西"> <county id="251401" name="吉首" weatherCode="101251501"/> <county id="251402" name="保靖" weatherCode="101251502"/> <county id="251403" name="永顺" weatherCode="101251503"/> <county id="251404" name="古丈" weatherCode="101251504"/> <county id="251405" name="凤凰" weatherCode="101251505"/> <county id="251406" name="泸溪" weatherCode="101251506"/> <county id="251407" name="龙山" weatherCode="101251507"/> <county id="251408" name="花垣" weatherCode="101251508"/> </city> </province> <province id="26" name="贵州"> <city id="2601" name="贵阳"> <county id="260101" name="贵阳" weatherCode="101260101"/> <county id="260102" name="白云" weatherCode="101260102"/> <county id="260103" name="花溪" weatherCode="101260103"/> <county id="260104" name="乌当" weatherCode="101260104"/> <county id="260105" name="息烽" weatherCode="101260105"/> <county id="260106" name="开阳" weatherCode="101260106"/> <county id="260107" name="修文" weatherCode="101260107"/> <county id="260108" name="清镇" weatherCode="101260108"/> <county id="260109" name="小河" weatherCode="101260109"/> <county id="260110" name="云岩" weatherCode="101260110"/> <county id="260111" name="南明" weatherCode="101260111"/> </city> <city id="2602" name="遵义"> <county id="260201" name="遵义" weatherCode="101260201"/> <county id="260202" name="遵义县" weatherCode="101260202"/> <county id="260203" name="仁怀" weatherCode="101260203"/> <county id="260204" name="绥阳" weatherCode="101260204"/> <county id="260205" name="湄潭" weatherCode="101260205"/> <county id="260206" name="凤冈" weatherCode="101260206"/> <county id="260207" name="桐梓" weatherCode="101260207"/> <county id="260208" name="赤水" weatherCode="101260208"/> <county id="260209" name="习水" weatherCode="101260209"/> <county id="260210" name="道真" weatherCode="101260210"/> <county id="260211" name="正安" weatherCode="101260211"/> <county id="260212" name="务川" weatherCode="101260212"/> <county id="260213" name="余庆" weatherCode="101260213"/> <county id="260214" name="汇川" weatherCode="101260214"/> <county id="260215" name="红花岗" weatherCode="101260215"/> </city> <city id="2603" name="安顺"> <county id="260301" name="安顺" weatherCode="101260301"/> <county id="260302" name="普定" weatherCode="101260302"/> <county id="260303" name="镇宁" weatherCode="101260303"/> <county id="260304" name="平坝" weatherCode="101260304"/> <county id="260305" name="紫云" weatherCode="101260305"/> <county id="260306" name="关岭" weatherCode="101260306"/> </city> <city id="2604" name="黔南"> <county id="260401" name="都匀" weatherCode="101260401"/> <county id="260402" name="贵定" weatherCode="101260402"/> <county id="260403" name="瓮安" weatherCode="101260403"/> <county id="260404" name="长顺" weatherCode="101260404"/> <county id="260405" name="福泉" weatherCode="101260405"/> <county id="260406" name="惠水" weatherCode="101260406"/> <county id="260407" name="龙里" weatherCode="101260407"/> <county id="260408" name="罗甸" weatherCode="101260408"/> <county id="260409" name="平塘" weatherCode="101260409"/> <county id="260410" name="独山" weatherCode="101260410"/> <county id="260411" name="三都" weatherCode="101260411"/> <county id="260412" name="荔波" weatherCode="101260412"/> </city> <city id="2605" name="黔东南"> <county id="260501" name="凯里" weatherCode="101260501"/> <county id="260502" name="岑巩" weatherCode="101260502"/> <county id="260503" name="施秉" weatherCode="101260503"/> <county id="260504" name="镇远" weatherCode="101260504"/> <county id="260505" name="黄平" weatherCode="101260505"/> <county id="260506" name="麻江" weatherCode="101260507"/> <county id="260507" name="丹寨" weatherCode="101260508"/> <county id="260508" name="三穗" weatherCode="101260509"/> <county id="260509" name="台江" weatherCode="101260510"/> <county id="260510" name="剑河" weatherCode="101260511"/> <county id="260511" name="雷山" weatherCode="101260512"/> <county id="260512" name="黎平" weatherCode="101260513"/> <county id="260513" name="天柱" weatherCode="101260514"/> <county id="260514" name="锦屏" weatherCode="101260515"/> <county id="260515" name="榕江" weatherCode="101260516"/> <county id="260516" name="从江" weatherCode="101260517"/> </city> <city id="2606" name="铜仁"> <county id="260601" name="铜仁" weatherCode="101260601"/> <county id="260602" name="江口" weatherCode="101260602"/> <county id="260603" name="玉屏" weatherCode="101260603"/> <county id="260604" name="万山" weatherCode="101260604"/> <county id="260605" name="思南" weatherCode="101260605"/> <county id="260606" name="印江" weatherCode="101260607"/> <county id="260607" name="石阡" weatherCode="101260608"/> <county id="260608" name="沿河" weatherCode="101260609"/> <county id="260609" name="德江" weatherCode="101260610"/> <county id="260610" name="松桃" weatherCode="101260611"/> </city> <city id="2607" name="毕节"> <county id="260701" name="毕节" weatherCode="101260701"/> <county id="260702" name="赫章" weatherCode="101260702"/> <county id="260703" name="金沙" weatherCode="101260703"/> <county id="260704" name="威宁" weatherCode="101260704"/> <county id="260705" name="大方" weatherCode="101260705"/> <county id="260706" name="纳雍" weatherCode="101260706"/> <county id="260707" name="织金" weatherCode="101260707"/> <county id="260708" name="黔西" weatherCode="101260708"/> </city> <city id="2608" name="六盘水"> <county id="260801" name="水城" weatherCode="101260801"/> <county id="260802" name="六枝" weatherCode="101260802"/> <county id="260803" name="盘县" weatherCode="101260804"/> </city> <city id="2609" name="黔西南"> <county id="260901" name="兴义" weatherCode="101260901"/> <county id="260902" name="晴隆" weatherCode="101260902"/> <county id="260903" name="兴仁" weatherCode="101260903"/> <county id="260904" name="贞丰" weatherCode="101260904"/> <county id="260905" name="望谟" weatherCode="101260905"/> <county id="260906" name="安龙" weatherCode="101260907"/> <county id="260907" name="册亨" weatherCode="101260908"/> <county id="260908" name="普安" weatherCode="101260909"/> </city> </province> <province id="27" name="四川"> <city id="2701" name="成都"> <county id="270101" name="成都" weatherCode="101270101"/> <county id="270102" name="龙泉驿" weatherCode="101270102"/> <county id="270103" name="新都" weatherCode="101270103"/> <county id="270104" name="温江" weatherCode="101270104"/> <county id="270105" name="金堂" weatherCode="101270105"/> <county id="270106" name="双流" weatherCode="101270106"/> <county id="270107" name="郫县" weatherCode="101270107"/> <county id="270108" name="大邑" weatherCode="101270108"/> <county id="270109" name="蒲江" weatherCode="101270109"/> <county id="270110" name="新津" weatherCode="101270110"/> <county id="270111" name="都江堰" weatherCode="101270111"/> <county id="270112" name="彭州" weatherCode="101270112"/> <county id="270113" name="邛崃" weatherCode="101270113"/> <county id="270114" name="崇州" weatherCode="101270114"/> </city> <city id="2702" name="攀枝花"> <county id="270201" name="攀枝花" weatherCode="101270201"/> <county id="270202" name="仁和" weatherCode="101270202"/> <county id="270203" name="米易" weatherCode="101270203"/> <county id="270204" name="盐边" weatherCode="101270204"/> </city> <city id="2703" name="自贡"> <county id="270301" name="自贡" weatherCode="101270301"/> <county id="270302" name="富顺" weatherCode="101270302"/> <county id="270303" name="荣县" weatherCode="101270303"/> </city> <city id="2704" name="绵阳"> <county id="270401" name="绵阳" weatherCode="101270401"/> <county id="270402" name="三台" weatherCode="101270402"/> <county id="270403" name="盐亭" weatherCode="101270403"/> <county id="270404" name="安县" weatherCode="101270404"/> <county id="270405" name="梓潼" weatherCode="101270405"/> <county id="270406" name="北川" weatherCode="101270406"/> <county id="270407" name="平武" weatherCode="101270407"/> <county id="270408" name="江油" weatherCode="101270408"/> </city> <city id="2705" name="南充"> <county id="270501" name="南充" weatherCode="101270501"/> <county id="270502" name="南部" weatherCode="101270502"/> <county id="270503" name="营山" weatherCode="101270503"/> <county id="270504" name="蓬安" weatherCode="101270504"/> <county id="270505" name="仪陇" weatherCode="101270505"/> <county id="270506" name="西充" weatherCode="101270506"/> <county id="270507" name="阆中" weatherCode="101270507"/> </city> <city id="2706" name="达州"> <county id="270601" name="达州" weatherCode="101270601"/> <county id="270602" name="宣汉" weatherCode="101270602"/> <county id="270603" name="开江" weatherCode="101270603"/> <county id="270604" name="大竹" weatherCode="101270604"/> <county id="270605" name="渠县" weatherCode="101270605"/> <county id="270606" name="万源" weatherCode="101270606"/> <county id="270607" name="通川" weatherCode="101270607"/> <county id="270608" name="达县" weatherCode="101270608"/> </city> <city id="2707" name="遂宁"> <county id="270701" name="遂宁" weatherCode="101270701"/> <county id="270702" name="蓬溪" weatherCode="101270702"/> <county id="270703" name="射洪" weatherCode="101270703"/> </city> <city id="2708" name="广安"> <county id="270801" name="广安" weatherCode="101270801"/> <county id="270802" name="岳池" weatherCode="101270802"/> <county id="270803" name="武胜" weatherCode="101270803"/> <county id="270804" name="邻水" weatherCode="101270804"/> <county id="270805" name="华蓥" weatherCode="101270805"/> </city> <city id="2709" name="巴中"> <county id="270901" name="巴中" weatherCode="101270901"/> <county id="270902" name="通江" weatherCode="101270902"/> <county id="270903" name="南江" weatherCode="101270903"/> <county id="270904" name="平昌" weatherCode="101270904"/> </city> <city id="2710" name="泸州"> <county id="271001" name="泸州" weatherCode="101271001"/> <county id="271002" name="泸县" weatherCode="101271003"/> <county id="271003" name="合江" weatherCode="101271004"/> <county id="271004" name="叙永" weatherCode="101271005"/> <county id="271005" name="古蔺" weatherCode="101271006"/> <county id="271006" name="纳溪" weatherCode="101271007"/> </city> <city id="2711" name="宜宾"> <county id="271101" name="宜宾" weatherCode="101271101"/> <county id="271102" name="宜宾县" weatherCode="101271103"/> <county id="271103" name="南溪" weatherCode="101271104"/> <county id="271104" name="江安" weatherCode="101271105"/> <county id="271105" name="长宁" weatherCode="101271106"/> <county id="271106" name="高县" weatherCode="101271107"/> <county id="271107" name="珙县" weatherCode="101271108"/> <county id="271108" name="筠连" weatherCode="101271109"/> <county id="271109" name="兴文" weatherCode="101271110"/> <county id="271110" name="屏山" weatherCode="101271111"/> </city> <city id="2712" name="内江"> <county id="271201" name="内江" weatherCode="101271201"/> <county id="271202" name="东兴" weatherCode="101271202"/> <county id="271203" name="威远" weatherCode="101271203"/> <county id="271204" name="资中" weatherCode="101271204"/> <county id="271205" name="隆昌" weatherCode="101271205"/> </city> <city id="2713" name="资阳"> <county id="271301" name="资阳" weatherCode="101271301"/> <county id="271302" name="安岳" weatherCode="101271302"/> <county id="271303" name="乐至" weatherCode="101271303"/> <county id="271304" name="简阳" weatherCode="101271304"/> </city> <city id="2714" name="乐山"> <county id="271401" name="乐山" weatherCode="101271401"/> <county id="271402" name="犍为" weatherCode="101271402"/> <county id="271403" name="井研" weatherCode="101271403"/> <county id="271404" name="夹江" weatherCode="101271404"/> <county id="271405" name="沐川" weatherCode="101271405"/> <county id="271406" name="峨边" weatherCode="101271406"/> <county id="271407" name="马边" weatherCode="101271407"/> <county id="271408" name="峨眉" weatherCode="101271408"/> <county id="271409" name="峨眉山" weatherCode="101271409"/> </city> <city id="2715" name="眉山"> <county id="271501" name="眉山" weatherCode="101271501"/> <county id="271502" name="仁寿" weatherCode="101271502"/> <county id="271503" name="彭山" weatherCode="101271503"/> <county id="271504" name="洪雅" weatherCode="101271504"/> <county id="271505" name="丹棱" weatherCode="101271505"/> <county id="271506" name="青神" weatherCode="101271506"/> </city> <city id="2716" name="凉山"> <county id="271601" name="凉山" weatherCode="101271601"/> <county id="271602" name="木里" weatherCode="101271603"/> <county id="271603" name="盐源" weatherCode="101271604"/> <county id="271604" name="德昌" weatherCode="101271605"/> <county id="271605" name="会理" weatherCode="101271606"/> <county id="271606" name="会东" weatherCode="101271607"/> <county id="271607" name="宁南" weatherCode="101271608"/> <county id="271608" name="普格" weatherCode="101271609"/> <county id="271609" name="西昌" weatherCode="101271610"/> <county id="271610" name="金阳" weatherCode="101271611"/> <county id="271611" name="昭觉" weatherCode="101271612"/> <county id="271612" name="喜德" weatherCode="101271613"/> <county id="271613" name="冕宁" weatherCode="101271614"/> <county id="271614" name="越西" weatherCode="101271615"/> <county id="271615" name="甘洛" weatherCode="101271616"/> <county id="271616" name="雷波" weatherCode="101271617"/> <county id="271617" name="美姑" weatherCode="101271618"/> <county id="271618" name="布拖" weatherCode="101271619"/> </city> <city id="2717" name="雅安"> <county id="271701" name="雅安" weatherCode="101271701"/> <county id="271702" name="名山" weatherCode="101271702"/> <county id="271703" name="荥经" weatherCode="101271703"/> <county id="271704" name="汉源" weatherCode="101271704"/> <county id="271705" name="石棉" weatherCode="101271705"/> <county id="271706" name="天全" weatherCode="101271706"/> <county id="271707" name="芦山" weatherCode="101271707"/> <county id="271708" name="宝兴" weatherCode="101271708"/> </city> <city id="2718" name="甘孜"> <county id="271801" name="甘孜" weatherCode="101271801"/> <county id="271802" name="康定" weatherCode="101271802"/> <county id="271803" name="泸定" weatherCode="101271803"/> <county id="271804" name="丹巴" weatherCode="101271804"/> <county id="271805" name="九龙" weatherCode="101271805"/> <county id="271806" name="雅江" weatherCode="101271806"/> <county id="271807" name="道孚" weatherCode="101271807"/> <county id="271808" name="炉霍" weatherCode="101271808"/> <county id="271809" name="新龙" weatherCode="101271809"/> <county id="271810" name="德格" weatherCode="101271810"/> <county id="271811" name="白玉" weatherCode="101271811"/> <county id="271812" name="石渠" weatherCode="101271812"/> <county id="271813" name="色达" weatherCode="101271813"/> <county id="271814" name="理塘" weatherCode="101271814"/> <county id="271815" name="巴塘" weatherCode="101271815"/> <county id="271816" name="乡城" weatherCode="101271816"/> <county id="271817" name="稻城" weatherCode="101271817"/> <county id="271818" name="得荣" weatherCode="101271818"/> </city> <city id="2719" name="阿坝"> <county id="271901" name="阿坝" weatherCode="101271901"/> <county id="271902" name="汶川" weatherCode="101271902"/> <county id="271903" name="理县" weatherCode="101271903"/> <county id="271904" name="茂县" weatherCode="101271904"/> <county id="271905" name="松潘" weatherCode="101271905"/> <county id="271906" name="九寨沟" weatherCode="101271906"/> <county id="271907" name="金川" weatherCode="101271907"/> <county id="271908" name="小金" weatherCode="101271908"/> <county id="271909" name="黑水" weatherCode="101271909"/> <county id="271910" name="马尔康" weatherCode="101271910"/> <county id="271911" name="壤塘" weatherCode="101271911"/> <county id="271912" name="若尔盖" weatherCode="101271912"/> <county id="271913" name="红原" weatherCode="101271913"/> </city> <city id="2720" name="德阳"> <county id="272001" name="德阳" weatherCode="101272001"/> <county id="272002" name="中江" weatherCode="101272002"/> <county id="272003" name="广汉" weatherCode="101272003"/> <county id="272004" name="什邡" weatherCode="101272004"/> <county id="272005" name="绵竹" weatherCode="101272005"/> <county id="272006" name="罗江" weatherCode="101272006"/> </city> <city id="2721" name="广元"> <county id="272101" name="广元" weatherCode="101272101"/> <county id="272102" name="旺苍" weatherCode="101272102"/> <county id="272103" name="青川" weatherCode="101272103"/> <county id="272104" name="剑阁" weatherCode="101272104"/> <county id="272105" name="苍溪" weatherCode="101272105"/> </city> </province> <province id="28" name="广东"> <city id="2801" name="广州"> <county id="280101" name="广州" weatherCode="101280101"/> <county id="280102" name="番禺" weatherCode="101280102"/> <county id="280103" name="从化" weatherCode="101280103"/> <county id="280104" name="增城" weatherCode="101280104"/> <county id="280105" name="花都" weatherCode="101280105"/> </city> <city id="2802" name="韶关"> <county id="280201" name="韶关" weatherCode="101280201"/> <county id="280202" name="乳源" weatherCode="101280202"/> <county id="280203" name="始兴" weatherCode="101280203"/> <county id="280204" name="翁源" weatherCode="101280204"/> <county id="280205" name="乐昌" weatherCode="101280205"/> <county id="280206" name="仁化" weatherCode="101280206"/> <county id="280207" name="南雄" weatherCode="101280207"/> <county id="280208" name="新丰" weatherCode="101280208"/> <county id="280209" name="曲江" weatherCode="101280209"/> <county id="280210" name="浈江" weatherCode="101280210"/> <county id="280211" name="武江" weatherCode="101280211"/> </city> <city id="2803" name="惠州"> <county id="280301" name="惠州" weatherCode="101280301"/> <county id="280302" name="博罗" weatherCode="101280302"/> <county id="280303" name="惠阳" weatherCode="101280303"/> <county id="280304" name="惠东" weatherCode="101280304"/> <county id="280305" name="龙门" weatherCode="101280305"/> </city> <city id="2804" name="梅州"> <county id="280401" name="梅州" weatherCode="101280401"/> <county id="280402" name="兴宁" weatherCode="101280402"/> <county id="280403" name="蕉岭" weatherCode="101280403"/> <county id="280404" name="大埔" weatherCode="101280404"/> <county id="280405" name="丰顺" weatherCode="101280406"/> <county id="280406" name="平远" weatherCode="101280407"/> <county id="280407" name="五华" weatherCode="101280408"/> <county id="280408" name="梅县" weatherCode="101280409"/> </city> <city id="2805" name="汕头"> <county id="280501" name="汕头" weatherCode="101280501"/> <county id="280502" name="潮阳" weatherCode="101280502"/> <county id="280503" name="澄海" weatherCode="101280503"/> <county id="280504" name="南澳" weatherCode="101280504"/> </city> <city id="2806" name="深圳"> <county id="280601" name="深圳" weatherCode="101280601"/> </city> <city id="2807" name="珠海"> <county id="280701" name="珠海" weatherCode="101280701"/> <county id="280702" name="斗门" weatherCode="101280702"/> <county id="280703" name="金湾" weatherCode="101280703"/> </city> <city id="2808" name="佛山"> <county id="280801" name="佛山" weatherCode="101280800"/> <county id="280802" name="顺德" weatherCode="101280801"/> <county id="280803" name="三水" weatherCode="101280802"/> <county id="280804" name="南海" weatherCode="101280803"/> <county id="280805" name="高明" weatherCode="101280804"/> </city> <city id="2809" name="肇庆"> <county id="280901" name="肇庆" weatherCode="101280901"/> <county id="280902" name="广宁" weatherCode="101280902"/> <county id="280903" name="四会" weatherCode="101280903"/> <county id="280904" name="德庆" weatherCode="101280905"/> <county id="280905" name="怀集" weatherCode="101280906"/> <county id="280906" name="封开" weatherCode="101280907"/> <county id="280907" name="高要" weatherCode="101280908"/> </city> <city id="2810" name="湛江"> <county id="281001" name="湛江" weatherCode="101281001"/> <county id="281002" name="吴川" weatherCode="101281002"/> <county id="281003" name="雷州" weatherCode="101281003"/> <county id="281004" name="徐闻" weatherCode="101281004"/> <county id="281005" name="廉江" weatherCode="101281005"/> <county id="281006" name="赤坎" weatherCode="101281006"/> <county id="281007" name="遂溪" weatherCode="101281007"/> <county id="281008" name="坡头" weatherCode="101281008"/> <county id="281009" name="霞山" weatherCode="101281009"/> <county id="281010" name="麻章" weatherCode="101281010"/> </city> <city id="2811" name="江门"> <county id="281101" name="江门" weatherCode="101281101"/> <county id="281102" name="开平" weatherCode="101281103"/> <county id="281103" name="新会" weatherCode="101281104"/> <county id="281104" name="恩平" weatherCode="101281105"/> <county id="281105" name="台山" weatherCode="101281106"/> <county id="281106" name="蓬江" weatherCode="101281107"/> <county id="281107" name="鹤山" weatherCode="101281108"/> <county id="281108" name="江海" weatherCode="101281109"/> </city> <city id="2812" name="河源"> <county id="281201" name="河源" weatherCode="101281201"/> <county id="281202" name="紫金" weatherCode="101281202"/> <county id="281203" name="连平" weatherCode="101281203"/> <county id="281204" name="和平" weatherCode="101281204"/> <county id="281205" name="龙川" weatherCode="101281205"/> <county id="281206" name="东源" weatherCode="101281206"/> </city> <city id="2813" name="清远"> <county id="281301" name="清远" weatherCode="101281301"/> <county id="281302" name="连南" weatherCode="101281302"/> <county id="281303" name="连州" weatherCode="101281303"/> <county id="281304" name="连山" weatherCode="101281304"/> <county id="281305" name="阳山" weatherCode="101281305"/> <county id="281306" name="佛冈" weatherCode="101281306"/> <county id="281307" name="英德" weatherCode="101281307"/> <county id="281308" name="清新" weatherCode="101281308"/> </city> <city id="2814" name="云浮"> <county id="281401" name="云浮" weatherCode="101281401"/> <county id="281402" name="罗定" weatherCode="101281402"/> <county id="281403" name="新兴" weatherCode="101281403"/> <county id="281404" name="郁南" weatherCode="101281404"/> <county id="281405" name="云安" weatherCode="101281406"/> </city> <city id="2815" name="潮州"> <county id="281501" name="潮州" weatherCode="101281501"/> <county id="281502" name="饶平" weatherCode="101281502"/> <county id="281503" name="潮安" weatherCode="101281503"/> </city> <city id="2816" name="东莞"> <county id="281601" name="东莞" weatherCode="101281601"/> </city> <city id="2817" name="中山"> <county id="281701" name="中山" weatherCode="101281701"/> </city> <city id="2818" name="阳江"> <county id="281801" name="阳江" weatherCode="101281801"/> <county id="281802" name="阳春" weatherCode="101281802"/> <county id="281803" name="阳东" weatherCode="101281803"/> <county id="281804" name="阳西" weatherCode="101281804"/> </city> <city id="2819" name="揭阳"> <county id="281901" name="揭阳" weatherCode="101281901"/> <county id="281902" name="揭西" weatherCode="101281902"/> <county id="281903" name="普宁" weatherCode="101281903"/> <county id="281904" name="惠来" weatherCode="101281904"/> <county id="281905" name="揭东" weatherCode="101281905"/> </city> <city id="2820" name="茂名"> <county id="282001" name="茂名" weatherCode="101282001"/> <county id="282002" name="高州" weatherCode="101282002"/> <county id="282003" name="化州" weatherCode="101282003"/> <county id="282004" name="电白" weatherCode="101282004"/> <county id="282005" name="信宜" weatherCode="101282005"/> <county id="282006" name="茂港" weatherCode="101282006"/> </city> <city id="2821" name="汕尾"> <county id="282101" name="汕尾" weatherCode="101282101"/> <county id="282102" name="海丰" weatherCode="101282102"/> <county id="282103" name="陆丰" weatherCode="101282103"/> <county id="282104" name="陆河" weatherCode="101282104"/> </city> </province> <province id="29" name="云南"> <city id="2901" name="昆明"> <county id="290101" name="昆明" weatherCode="101290101"/> <county id="290102" name="东川" weatherCode="101290103"/> <county id="290103" name="寻甸" weatherCode="101290104"/> <county id="290104" name="晋宁" weatherCode="101290105"/> <county id="290105" name="宜良" weatherCode="101290106"/> <county id="290106" name="石林" weatherCode="101290107"/> <county id="290107" name="呈贡" weatherCode="101290108"/> <county id="290108" name="富民" weatherCode="101290109"/> <county id="290109" name="嵩明" weatherCode="101290110"/> <county id="290110" name="禄劝" weatherCode="101290111"/> <county id="290111" name="安宁" weatherCode="101290112"/> <county id="290112" name="太华山" weatherCode="101290113"/> </city> <city id="2902" name="大理"> <county id="290201" name="大理" weatherCode="101290201"/> <county id="290202" name="云龙" weatherCode="101290202"/> <county id="290203" name="漾濞" weatherCode="101290203"/> <county id="290204" name="永平" weatherCode="101290204"/> <county id="290205" name="宾川" weatherCode="101290205"/> <county id="290206" name="弥渡" weatherCode="101290206"/> <county id="290207" name="祥云" weatherCode="101290207"/> <county id="290208" name="巍山" weatherCode="101290208"/> <county id="290209" name="剑川" weatherCode="101290209"/> <county id="290210" name="洱源" weatherCode="101290210"/> <county id="290211" name="鹤庆" weatherCode="101290211"/> <county id="290212" name="南涧" weatherCode="101290212"/> </city> <city id="2903" name="红河"> <county id="290301" name="红河" weatherCode="101290301"/> <county id="290302" name="石屏" weatherCode="101290302"/> <county id="290303" name="建水" weatherCode="101290303"/> <county id="290304" name="弥勒" weatherCode="101290304"/> <county id="290305" name="元阳" weatherCode="101290305"/> <county id="290306" name="绿春" weatherCode="101290306"/> <county id="290307" name="开远" weatherCode="101290307"/> <county id="290308" name="个旧" weatherCode="101290308"/> <county id="290309" name="蒙自" weatherCode="101290309"/> <county id="290310" name="屏边" weatherCode="101290310"/> <county id="290311" name="泸西" weatherCode="101290311"/> <county id="290312" name="金平" weatherCode="101290312"/> <county id="290313" name="河口" weatherCode="101290313"/> </city> <city id="2904" name="曲靖"> <county id="290401" name="曲靖" weatherCode="101290401"/> <county id="290402" name="沾益" weatherCode="101290402"/> <county id="290403" name="陆良" weatherCode="101290403"/> <county id="290404" name="富源" weatherCode="101290404"/> <county id="290405" name="马龙" weatherCode="101290405"/> <county id="290406" name="师宗" weatherCode="101290406"/> <county id="290407" name="罗平" weatherCode="101290407"/> <county id="290408" name="会泽" weatherCode="101290408"/> <county id="290409" name="宣威" weatherCode="101290409"/> </city> <city id="2905" name="保山"> <county id="290501" name="保山" weatherCode="101290501"/> <county id="290502" name="龙陵" weatherCode="101290503"/> <county id="290503" name="施甸" weatherCode="101290504"/> <county id="290504" name="昌宁" weatherCode="101290505"/> <county id="290505" name="腾冲" weatherCode="101290506"/> </city> <city id="2906" name="文山"> <county id="290601" name="文山" weatherCode="101290601"/> <county id="290602" name="西畴" weatherCode="101290602"/> <county id="290603" name="马关" weatherCode="101290603"/> <county id="290604" name="麻栗坡" weatherCode="101290604"/> <county id="290605" name="砚山" weatherCode="101290605"/> <county id="290606" name="丘北" weatherCode="101290606"/> <county id="290607" name="广南" weatherCode="101290607"/> <county id="290608" name="富宁" weatherCode="101290608"/> </city> <city id="2907" name="玉溪"> <county id="290701" name="玉溪" weatherCode="101290701"/> <county id="290702" name="澄江" weatherCode="101290702"/> <county id="290703" name="江川" weatherCode="101290703"/> <county id="290704" name="通海" weatherCode="101290704"/> <county id="290705" name="华宁" weatherCode="101290705"/> <county id="290706" name="新平" weatherCode="101290706"/> <county id="290707" name="易门" weatherCode="101290707"/> <county id="290708" name="峨山" weatherCode="101290708"/> <county id="290709" name="元江" weatherCode="101290709"/> </city> <city id="2908" name="楚雄"> <county id="290801" name="楚雄" weatherCode="101290801"/> <county id="290802" name="大姚" weatherCode="101290802"/> <county id="290803" name="元谋" weatherCode="101290803"/> <county id="290804" name="姚安" weatherCode="101290804"/> <county id="290805" name="牟定" weatherCode="101290805"/> <county id="290806" name="南华" weatherCode="101290806"/> <county id="290807" name="武定" weatherCode="101290807"/> <county id="290808" name="禄丰" weatherCode="101290808"/> <county id="290809" name="双柏" weatherCode="101290809"/> <county id="290810" name="永仁" weatherCode="101290810"/> </city> <city id="2909" name="普洱"> <county id="290901" name="普洱" weatherCode="101290901"/> <county id="290902" name="景谷" weatherCode="101290902"/> <county id="290903" name="景东" weatherCode="101290903"/> <county id="290904" name="澜沧" weatherCode="101290904"/> <county id="290905" name="墨江" weatherCode="101290906"/> <county id="290906" name="江城" weatherCode="101290907"/> <county id="290907" name="孟连" weatherCode="101290908"/> <county id="290908" name="西盟" weatherCode="101290909"/> <county id="290909" name="镇沅" weatherCode="101290911"/> <county id="290910" name="宁洱" weatherCode="101290912"/> </city> <city id="2910" name="昭通"> <county id="291001" name="昭通" weatherCode="101291001"/> <county id="291002" name="鲁甸" weatherCode="101291002"/> <county id="291003" name="彝良" weatherCode="101291003"/> <county id="291004" name="镇雄" weatherCode="101291004"/> <county id="291005" name="威信" weatherCode="101291005"/> <county id="291006" name="巧家" weatherCode="101291006"/> <county id="291007" name="绥江" weatherCode="101291007"/> <county id="291008" name="永善" weatherCode="101291008"/> <county id="291009" name="盐津" weatherCode="101291009"/> <county id="291010" name="大关" weatherCode="101291010"/> <county id="291011" name="水富" weatherCode="101291011"/> </city> <city id="2911" name="临沧"> <county id="291101" name="临沧" weatherCode="101291101"/> <county id="291102" name="沧源" weatherCode="101291102"/> <county id="291103" name="耿马" weatherCode="101291103"/> <county id="291104" name="双江" weatherCode="101291104"/> <county id="291105" name="凤庆" weatherCode="101291105"/> <county id="291106" name="永德" weatherCode="101291106"/> <county id="291107" name="云县" weatherCode="101291107"/> <county id="291108" name="镇康" weatherCode="101291108"/> </city> <city id="2912" name="怒江"> <county id="291201" name="怒江" weatherCode="101291201"/> <county id="291202" name="福贡" weatherCode="101291203"/> <county id="291203" name="兰坪" weatherCode="101291204"/> <county id="291204" name="泸水" weatherCode="101291205"/> <county id="291205" name="六库" weatherCode="101291206"/> <county id="291206" name="贡山" weatherCode="101291207"/> </city> <city id="2913" name="迪庆"> <county id="291301" name="香格里拉" weatherCode="101291301"/> <county id="291302" name="德钦" weatherCode="101291302"/> <county id="291303" name="维西" weatherCode="101291303"/> <county id="291304" name="中甸" weatherCode="101291304"/> </city> <city id="2914" name="丽江"> <county id="291401" name="丽江" weatherCode="101291401"/> <county id="291402" name="永胜" weatherCode="101291402"/> <county id="291403" name="华坪" weatherCode="101291403"/> <county id="291404" name="宁蒗" weatherCode="101291404"/> </city> <city id="2915" name="德宏"> <county id="291501" name="德宏" weatherCode="101291501"/> <county id="291502" name="陇川" weatherCode="101291503"/> <county id="291503" name="盈江" weatherCode="101291504"/> <county id="291504" name="瑞丽" weatherCode="101291506"/> <county id="291505" name="梁河" weatherCode="101291507"/> <county id="291506" name="潞西" weatherCode="101291508"/> </city> <city id="2916" name="西双版纳"> <county id="291601" name="景洪" weatherCode="101291601"/> <county id="291602" name="勐海" weatherCode="101291603"/> <county id="291603" name="勐腊" weatherCode="101291605"/> </city> </province> <province id="30" name="广西"> <city id="3001" name="南宁"> <county id="300101" name="南宁" weatherCode="101300101"/> <county id="300102" name="邕宁" weatherCode="101300103"/> <county id="300103" name="横县" weatherCode="101300104"/> <county id="300104" name="隆安" weatherCode="101300105"/> <county id="300105" name="马山" weatherCode="101300106"/> <county id="300106" name="上林" weatherCode="101300107"/> <county id="300107" name="武鸣" weatherCode="101300108"/> <county id="300108" name="宾阳" weatherCode="101300109"/> </city> <city id="3002" name="崇左"> <county id="300201" name="崇左" weatherCode="101300201"/> <county id="300202" name="天等" weatherCode="101300202"/> <county id="300203" name="龙州" weatherCode="101300203"/> <county id="300204" name="凭祥" weatherCode="101300204"/> <county id="300205" name="大新" weatherCode="101300205"/> <county id="300206" name="扶绥" weatherCode="101300206"/> <county id="300207" name="宁明" weatherCode="101300207"/> </city> <city id="3003" name="柳州"> <county id="300301" name="柳州" weatherCode="101300301"/> <county id="300302" name="柳城" weatherCode="101300302"/> <county id="300303" name="鹿寨" weatherCode="101300304"/> <county id="300304" name="柳江" weatherCode="101300305"/> <county id="300305" name="融安" weatherCode="101300306"/> <county id="300306" name="融水" weatherCode="101300307"/> <county id="300307" name="三江" weatherCode="101300308"/> </city> <city id="3004" name="来宾"> <county id="300401" name="来宾" weatherCode="101300401"/> <county id="300402" name="忻城" weatherCode="101300402"/> <county id="300403" name="金秀" weatherCode="101300403"/> <county id="300404" name="象州" weatherCode="101300404"/> <county id="300405" name="武宣" weatherCode="101300405"/> <county id="300406" name="合山" weatherCode="101300406"/> </city> <city id="3005" name="桂林"> <county id="300501" name="桂林" weatherCode="101300501"/> <county id="300502" name="龙胜" weatherCode="101300503"/> <county id="300503" name="永福" weatherCode="101300504"/> <county id="300504" name="临桂" weatherCode="101300505"/> <county id="300505" name="兴安" weatherCode="101300506"/> <county id="300506" name="灵川" weatherCode="101300507"/> <county id="300507" name="全州" weatherCode="101300508"/> <county id="300508" name="灌阳" weatherCode="101300509"/> <county id="300509" name="阳朔" weatherCode="101300510"/> <county id="300510" name="恭城" weatherCode="101300511"/> <county id="300511" name="平乐" weatherCode="101300512"/> <county id="300512" name="荔浦" weatherCode="101300513"/> <county id="300513" name="资源" weatherCode="101300514"/> </city> <city id="3006" name="梧州"> <county id="300601" name="梧州" weatherCode="101300601"/> <county id="300602" name="藤县" weatherCode="101300602"/> <county id="300603" name="苍梧" weatherCode="101300604"/> <county id="300604" name="蒙山" weatherCode="101300605"/> <county id="300605" name="岑溪" weatherCode="101300606"/> </city> <city id="3007" name="贺州"> <county id="300701" name="贺州" weatherCode="101300701"/> <county id="300702" name="昭平" weatherCode="101300702"/> <county id="300703" name="富川" weatherCode="101300703"/> <county id="300704" name="钟山" weatherCode="101300704"/> </city> <city id="3008" name="贵港"> <county id="300801" name="贵港" weatherCode="101300801"/> <county id="300802" name="桂平" weatherCode="101300802"/> <county id="300803" name="平南" weatherCode="101300803"/> </city> <city id="3009" name="玉林"> <county id="300901" name="玉林" weatherCode="101300901"/> <county id="300902" name="博白" weatherCode="101300902"/> <county id="300903" name="北流" weatherCode="101300903"/> <county id="300904" name="容县" weatherCode="101300904"/> <county id="300905" name="陆川" weatherCode="101300905"/> <county id="300906" name="兴业" weatherCode="101300906"/> </city> <city id="3010" name="百色"> <county id="301001" name="百色" weatherCode="101301001"/> <county id="301002" name="那坡" weatherCode="101301002"/> <county id="301003" name="田阳" weatherCode="101301003"/> <county id="301004" name="德保" weatherCode="101301004"/> <county id="301005" name="靖西" weatherCode="101301005"/> <county id="301006" name="田东" weatherCode="101301006"/> <county id="301007" name="平果" weatherCode="101301007"/> <county id="301008" name="隆林" weatherCode="101301008"/> <county id="301009" name="西林" weatherCode="101301009"/> <county id="301010" name="乐业" weatherCode="101301010"/> <county id="301011" name="凌云" weatherCode="101301011"/> <county id="301012" name="田林" weatherCode="101301012"/> </city> <city id="3011" name="钦州"> <county id="301101" name="钦州" weatherCode="101301101"/> <county id="301102" name="浦北" weatherCode="101301102"/> <county id="301103" name="灵山" weatherCode="101301103"/> </city> <city id="3012" name="河池"> <county id="301201" name="河池" weatherCode="101301201"/> <county id="301202" name="天峨" weatherCode="101301202"/> <county id="301203" name="东兰" weatherCode="101301203"/> <county id="301204" name="巴马" weatherCode="101301204"/> <county id="301205" name="环江" weatherCode="101301205"/> <county id="301206" name="罗城" weatherCode="101301206"/> <county id="301207" name="宜州" weatherCode="101301207"/> <county id="301208" name="凤山" weatherCode="101301208"/> <county id="301209" name="南丹" weatherCode="101301209"/> <county id="301210" name="都安" weatherCode="101301210"/> <county id="301211" name="大化" weatherCode="101301211"/> </city> <city id="3013" name="北海"> <county id="301301" name="北海" weatherCode="101301301"/> <county id="301302" name="合浦" weatherCode="101301302"/> <county id="301303" name="涠洲岛" weatherCode="101301303"/> </city> <city id="3014" name="防城港"> <county id="301401" name="防城港" weatherCode="101301401"/> <county id="301402" name="上思" weatherCode="101301402"/> <county id="301403" name="东兴" weatherCode="101301403"/> <county id="301404" name="防城" weatherCode="101301405"/> </city> </province> <province id="31" name="海南"> <city id="3101" name="海口"> <county id="310101" name="海口" weatherCode="101310101"/> </city> <city id="3102" name="三亚"> <county id="310201" name="三亚" weatherCode="101310201"/> </city> <city id="3103" name="东方"> <county id="310301" name="东方" weatherCode="101310202"/> </city> <city id="3104" name="临高"> <county id="310401" name="临高" weatherCode="101310203"/> </city> <city id="3105" name="澄迈"> <county id="310501" name="澄迈" weatherCode="101310204"/> </city> <city id="3106" name="儋州"> <county id="310601" name="儋州" weatherCode="101310205"/> </city> <city id="3107" name="昌江"> <county id="310701" name="昌江" weatherCode="101310206"/> </city> <city id="3108" name="白沙"> <county id="310801" name="白沙" weatherCode="101310207"/> </city> <city id="3109" name="琼中"> <county id="310901" name="琼中" weatherCode="101310208"/> </city> <city id="3110" name="定安"> <county id="311001" name="定安" weatherCode="101310209"/> </city> <city id="3111" name="屯昌"> <county id="311101" name="屯昌" weatherCode="101310210"/> </city> <city id="3112" name="琼海"> <county id="311201" name="琼海" weatherCode="101310211"/> </city> <city id="3113" name="文昌"> <county id="311301" name="文昌" weatherCode="101310212"/> </city> <city id="3114" name="保亭"> <county id="311401" name="保亭" weatherCode="101310214"/> </city> <city id="3115" name="万宁"> <county id="311501" name="万宁" weatherCode="101310215"/> </city> <city id="3116" name="陵水"> <county id="311601" name="陵水" weatherCode="101310216"/> </city> <city id="3117" name="西沙"> <county id="311701" name="西沙" weatherCode="101310217"/> </city> <city id="3118" name="南沙"> <county id="311801" name="南沙" weatherCode="101310220"/> </city> <city id="3119" name="乐东"> <county id="311901" name="乐东" weatherCode="101310221"/> </city> <city id="3120" name="五指山"> <county id="312001" name="五指山" weatherCode="101310222"/> </city> </province> <province id="32" name="香港"> <city id="3201" name="香港"> <county id="320101" name="香港" weatherCode="101320101"/> <county id="320102" name="九龙" weatherCode="101320102"/> <county id="320103" name="新界" weatherCode="101320103"/> </city> </province> <province id="33" name="澳门"> <city id="3301" name="澳门"> <county id="330101" name="澳门" weatherCode="101330101"/> <county id="330102" name="氹仔岛" weatherCode="101330102"/> <county id="330103" name="路环岛" weatherCode="101330103"/> </city> </province> <province id="34" name="台湾"> <city id="3401" name="台北"> <county id="340101" name="台北" weatherCode="101340101"/> <county id="340102" name="桃园" weatherCode="101340102"/> <county id="340103" name="新竹" weatherCode="101340103"/> <county id="340104" name="宜兰" weatherCode="101340104"/> </city> <city id="3402" name="高雄"> <county id="340201" name="高雄" weatherCode="101340201"/> <county id="340202" name="嘉义" weatherCode="101340202"/> <county id="340203" name="台南" weatherCode="101340203"/> <county id="340204" name="台东" weatherCode="101340204"/> <county id="340205" name="屏东" weatherCode="101340205"/> </city> <city id="3403" name="台中"> <county id="340301" name="台中" weatherCode="101340401"/> <county id="340302" name="苗栗" weatherCode="101340402"/> <county id="340303" name="彰化" weatherCode="101340403"/> <county id="340304" name="南投" weatherCode="101340404"/> <county id="340305" name="花莲" weatherCode="101340405"/> <county id="340306" name="云林" weatherCode="101340406"/> </city> </province> </China>

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读