中国天气网 天气预报API 国家气象局 根据城市名称抓取城市

Posted 我不是猴子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了中国天气网 天气预报API 国家气象局 根据城市名称抓取城市相关的知识,希望对你有一定的参考价值。

获取城市的城市代码了

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);
exit();

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

接口地址:

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

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

 

 

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.小雪 其中后来发现知道这个没用,这个数字的主要作用是检索图片的!!!

以上是关于中国天气网 天气预报API 国家气象局 根据城市名称抓取城市的主要内容,如果未能解决你的问题,请参考以下文章

中国气象局天气API的中文乱码问题

如何使用中国气象局API开发天气APP

天气预报API:最新全国所有城市代码(“新编码”)

中国天气网城市代码

天气预报API:城市代码--“新编码”和“旧编码” 对比

中国天气网城市代码