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

为什么80%的码农都做不了架构师?>>>   hot3.png

说到开发天气预报,就需要找一个开放接口了,接口有很多,不过个人觉得,中国天气网的数据比较准确,而且也有权威性。访问地址

如:http://m.weather.com.cn/data/101010100.html,这是北京的天气URL,其中101010100就是城市代码了,

比如西安的天气URL为:http://m.weather.com.cn/data/101110101.html

那么现在主要的任务就是怎样获取这些城市的城市代码了

function curl($url){
	$ch = curl_init();
	curl_setopt($ch, CURLOPT_URL, $url);
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
	curl_setopt($ch, CURLOPT_REFERER, 'http://www.weather.com.cn/forecast/index.shtml');//必须滴
	curl_setopt($ch, CURLOPT_COOKIE,'isexist=1');//最好带上 比较稳定
	curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0');
	curl_setopt($ch, CURLOPT_HEADER, 0);
	$data = curl_exec($ch);
	curl_close($ch);
	return $data;
}
$city = '南京';
$url = 'http://toy1.weather.com.cn/search?cityname='.urlencode($city).'&callback=jsonp'.time().mt_rand(100, 999).'&_='.time().mt_rand(100, 999);
$result = explode('~', substr(strtolower(curl($url)), 28, -4));
var_export($result);//http://my.oschina.net/cart/
exit();
得到的结果:

array (
  0 => '101190101',//城市ID
  1 => 'jiangsu',//对应省份全拼
  2 => '南京',//城市汉字
  3 => 'nanjing',//城市全拼
  4 => '南京',//城市汉字
  5 => 'nanjing',//城市全拼
  6 => '025',//区号
  7 => '210000',//邮编
  8 => 'nj',//城市首字母简写
  9 => '江苏',//对应省份汉字
)




国家气象局提供的天气预报接口

接口地址:

http://www.weather.com.cn/data/sk/101010100.html

http://www.weather.com.cn/data/cityinfo/101010100.html

http://m.weather.com.cn/data/101010100.html

以json格式提供,格式如下

{"weatherinfo":{
//基本信息;
"city":"北京","city_en":"beijing",
"date_y":"2011年8月10日","date":"辛卯年","week":"星期三","fchh":"18","cityid":"101010100",
//摄氏温度
"temp1":"24℃~33℃","temp2":"24℃~32℃","temp3":"25℃~31℃","temp4":"23℃~30℃","temp5":"22℃~30℃","temp6":"21℃~32℃",
//华氏温度;
"tempF1":"75.2℉~91.4℉","tempF2":"75.2℉~89.6℉","tempF3":"77℉~87.8℉","tempF4":"73.4℉~86℉","tempF5":"71.6℉~86℉","tempF6":"69.8℉~89.6℉",
//天气描述;
"weather1":"多云","weather2":"晴转多云","weather3":"阴","weather4":"晴转阵雨","weather5":"阵雨","weather6":"多云",
//天气描述图片序号
"img1":"1","img2":"99","img3":"0","img4":"1","img5":"2","img6":"99","img7":"0","img8":"3","img9":"3","img10":"99","img11":"1","img12":"99",
"img_single":"1",
//图片名称;
"img_title1":"多云","img_title2":"多云","img_title3":"晴","img_title4":" 多云","img_title5":"阴","img_title6":"阴","img_title7":"晴","img_title8":"阵 雨","img_title9":"阵雨","img_title10":"阵雨","img_title11":"多 云","img_title12":"多云","img_title_single":"多云",
//风速描述
"wind1":"微风","wind2":"微风","wind3":"微风","wind4":"微风","wind5":"微风","wind6":"微风",
//???
"fx1":"微风","fx2":"微风","fl1":"小于3级","fl2":"小于3级","fl3":"小于3级","fl4":"小于3级","fl5":"小于3级","fl6":"小于3级",
//今天穿衣指数;
"index":"炎热","index_d":"天气炎热,建议着短衫、短裙、短裤、薄型T恤衫、敞领短袖棉衫等清凉夏季服装。",
//48小时穿衣指数
"index48":"炎热","index48_d":"天气炎热,建议着短衫、短裙、短裤、薄型T恤衫、敞领短袖棉衫等清凉夏季服装。"
//紫外线及48小时紫外线
,"index_uv":"中等","index48_uv":"弱",
//洗车
"index_xc":"适宜",
//旅游
"index_tr":"较适宜",
//舒适指数
"index_co":"较不舒适",
//
"st1":"33","st2":"24","st3":"32","st4":"25","st5":"32","st6":"24",
//晨练
"index_cl":"适宜",
//晾晒
"index_ls":"适宜",
//过敏
"index_ag":"极易发"}}
 
 字段言简意赅,城市名,英文名,日期,农历日期,星期,预报时间,城市代码,6个预报温度(华氏温度,摄氏温度),6个预报天气和风力,剩下的就是一些气象指数。


1. XML接口

http://flash.weather.com.cn/wmaps/xml/china.xml 这个是全国天气的根节点,列出所有的省,其中的pyName字段是各个省XML的文件名,比如北京的是beijing,那就意味着北京的XML地址为 http://flash.weather.com.cn/wmaps/xml/beijing.xml 一个省的天气,其中列出该省各个市的数据,北京就列出各个区。 tmp1是最低温低,tmp2是最高温度,url非常重要,我们一会儿再说。state1和state2是神马转神马,每个数代表一个天气现象。天气现象 非常多,我本想全部分析出来,后来直接放弃了这个想法。因为我看到了一个城市的天气现象的编码是26...我现在知道的有0.晴 1.多云 2.阴 6.雨夹雪 7.小雨 8.中雨 13.阵雪 14.小雪 其中后来发现知道这个没用,这个数字的主要作用是检索图片的!!!

2. 图片接口

http://m.weather.com.cn/img/c0.gif http://m.weather.com.cn/img/b0.gif http://www.weather.com.cn/m/i/weatherpic/29x20/d0.gif http://www.weather.com.cn/m2/i/icon_weather/29x20/n00.gif 这个图就是天气现象0(晴)的图片,其他天气现象的图片依此类推。c打头的图片是20*20像素的,b打头的是50*46像素的,d打头的是反白的图 标,29*20像素,n打头的是夜间反白图标,29*20像素,注意这里的文件名是两位数字! 也许还有更多的图标,等待大家发掘啦~

3. JSON接口

真没想到~居然有JSON接口~JSON在iPhone上分析起来要比XML简单很多 http://m.weather.com.cn/data/101010200.html 这个是北京的JSON数据,那个HTML的名字是根据上文XML中的url得到的。这个JSON中包含了实时数据、7天天气预报、气象指数等丰富的数据




  
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
  
  
    
      
      
      
      
      
      
      
      
      
      
      
      
    
  
  
    
      
      
      
      
      
      
      
      
      
      
      
      
      
    
  
  
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
  
  
    
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
    
    
      
      
      
      
    
    
      
      
      
    
    
      
      
      
      
      
    
  
  
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
  
  
    
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
    
    
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
    
    
      
      
    
    
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
    
    
      
      
      
      
    
  
  
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
    
  
  
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
  
  
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
  
  
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
    
    
      
    
  
  
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
    
    
      
    
    
      
      
      
      
      
      
      
      
    
  
  
    
      
      
      
      
      
      
    
    
      
      
      
    
    
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
      
    
  
  
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
  
  
    
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
    
  
  
    
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
    
    
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
    
  
  
    
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
    
  
  
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
    
  
  
    
      
      
      
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
    
  
  
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
    
    
      
      
    
    
      
      
      
      
      
    
    
      
    
    
      
    
    
      
    
  
  
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
    
  
  
    
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
    
    
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
    
    
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
    
  
  
    
      
      
      
      
      
      
      
      
      
    
    
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
  
  
    
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
    
    
      
      
      
    
  
  
    
      
      
      
      
      
    
    
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
  
  
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
    
    
      
      
      
      
      
      
      
      
    
  
  
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
    
  
  
    
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
    
    
      
    
    
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
    
    
      
    
    
      
    
    
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
    
  
  
    
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
    
  
  
    
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
    
    
      
      
      
    
    
      
      
      
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
    
    
      
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
    
    
      
      
      
      
    
  
  
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
  
  
    
      
      
      
    
  
  
    
      
      
      
    
  
  
    
      
      
      
      
    
    
      
      
      
      
      
    
    
      
      
      
      
      
      
    
  





转载于:https://my.oschina.net/cart/blog/189839

你可能感兴趣的:(中国天气网 天气预报API 国家气象局 根据城市名称抓取城市ID,XML格式、JSON格式、图片代码...)