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="101111101"/>
    </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" na

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

中国天气网天气预报API接口城市代码,XML格式,数据具体到县 区级别相关推荐

  1. 中国天气网天气预报API接口城市代码(XML格式,信息全)

    说到开发天气预报,就需要找一个开放接口了,接口有很多,中国天气网的数据比较准确,而且也有权威性.访问地址如:http://m.weather.com.cn/data/101010100.html,这是 ...

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

    2019独角兽企业重金招聘Python工程师标准>>> 说到开发天气预报,就需要找一个开放接口了,接口有很多,不过个人觉得,中国天气网的数据比较准确,而且也有权威性.访问地址如:ht ...

  3. 天气预报API接口城市代码(XML格式,信息大全)

    天气预报API城市代号.xml <?xml version="1.0" encoding="UTF-8"?><China><pro ...

  4. 中国天气网 天气预报API 国家气象局 根据城市名称抓取城市ID,XML格式、JSON格式、图片代码...

    为什么80%的码农都做不了架构师?>>>    说到开发天气预报,就需要找一个开放接口了,接口有很多,不过个人觉得,中国天气网的数据比较准确,而且也有权威性.访问地址 如:http: ...

  5. php根据城市获取天气预报,中国天气网 天气预报API 国家气象局 根据城市名称抓取城市(示例代码)...

    获取城市的城市代码了 function curl($url){ $ch=curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($c ...

  6. 中国天气网天气预报接口

    中国天气weather.com 中国天气网天气预报接口总共提供了三个: http://www.weather.com.cn/data/sk/101010100.html http://www.weat ...

  7. html获取中国天气,Json获取中国天气网天气预报的代码

    Json获取中国天气网天气预报的代码 文章作者:网友投稿 发布时间:2010-07-14 14:20:08 来源:网络 获取中国天气网天气的代码 var url=escape(http://m.wea ...

  8. 抓取中国天气网当前时段所有城市的天气数据(python+xpath)

    先给大家看一看效果图(我一共获取到了462个城市的天气): 前不久,2019年开放数据中心峰会在北京国际会议中心成功召开,ODCC指出:"对数据进行汇聚,在体系化融合中产生新的价值已成为未来 ...

  9. php爬虫实时更新天气,Python爬虫获取中国天气网天气预报数据[2018-06-12更新]

    实时天气显示建议用Domoticz内置的DarkSky. 天气预报只能自己获取. 此脚本获取中国天气网七日预报,设备需要自建虚拟硬件,添加虚拟设备,设备类型选择Text文本. 效果: 屏幕快照 201 ...

最新文章

  1. 单目3D物体级SLAM | CubeSLAM: Monocular 3D Object SLAM
  2. 十分钟了解分布式计算:GraphX
  3. 吐血整理!10 个机器学习教程汇总,爱可可推荐!
  4. oracle32位11g中文乱码,win7 64位系统 Oracle32bit + PL/SQL访问Orale服务,Oracle 11g的安装,中文乱码问题的解决...
  5. Redis 面试题补充与汇总
  6. java static method_java 中static的几种用法
  7. Springboot整合Nacos配置中心
  8. Ubuntu alias在/etc/profile重启无效解决
  9. hash通信(python多线程应用)采用md5加密
  10. centos7安装RabbitMQ详细过程
  11. Vulntarget靶场渗透笔记[持续更新中]
  12. 盗版 Win7 试用到期后黑屏咋办
  13. 使用ZYNQ实现单LUT内容的动态修改(一)PL端OOC设计流程
  14. android 彩信发送,在部分手机上报错,提示activityNotFoundError。
  15. python正则匹配数字或者汉字
  16. 中科院院士!南京大学,迎来新校长
  17. 漫画电子电路读书笔记
  18. java单根结构_Java语言程序设计中的单根结构
  19. 5种典型的“穷人式思维”
  20. 清理完c盘计算机无法重启,电脑的c盘被清理,随后就关机后,在打开,就打不开了,...

热门文章

  1. 关于“打开数据库时出错: 用户 ‘sa‘ 登录失败。”的解决方法
  2. 50万年薪程序员的面试题
  3. 1-0 三台PC集群的搭建(noHA)
  4. Blender技巧之Eevee渲染设置中常见问题及解答
  5. UART转232通讯出错(MAX232和MAX3232混用导致错误)
  6. wxpython显示图片_使用wxPython显示缩略图的简单方法
  7. SAP FI 反记账功能简介
  8. Git 使用教程,最详细,最傻瓜,最浅显,小姐姐真正手把手教会你
  9. 35岁亿万富翁:程序员之神,游戏玩家的领袖
  10. 12年经验资深产品经理领你从“产品小白”走向“产品大牛”