惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
V
Visual Studio Blog
Martin Fowler
Martin Fowler
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 叶小钗
I
InfoQ
B
Blog RSS Feed
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
IT之家
IT之家
P
Proofpoint News Feed
WordPress大学
WordPress大学
小众软件
小众软件
B
Blog
MongoDB | Blog
MongoDB | Blog
人人都是产品经理
人人都是产品经理
量子位
Hugging Face - Blog
Hugging Face - Blog
月光博客
月光博客

博客园 - Warrior Sun

【再学WPF】模板 【再学WPF】自定义样式 Tomcat修改service.xml性能调优 增加最大并发连接数 网站并发量的计算方法 计算并发用户数的五种方法 用户中心 - 博客园 你怎么看《周鸿祎自述:我的互联网方法论》这本书? 如何让SQLServer的 itemNum 字段 按照数字大小顺序排序 中文网页的字体 怎么用钓鱼小药 [转]红帽 Red Hat Linux相关产品iso镜像下载【百度云】 IIS7.0上传文件限制的解决方法 特殊符号 开源免费的天气预报接口API以及全国所有地区代码(国家气象局提供) Windows Update 时出现8024402C的错误 OC中copy的使用 Access自动编号的初始值设置及重置编号 在Excel中将数字转换为大写 [SharpZipLib 未能加载文件或程序集] 解决方法
如何得到天气情况?在那个接口获取?
Warrior Sun · 2015-10-24 · via 博客园 - Warrior Sun

据我所知,气象局提供三个天气查询接口,如下:


1、实时天气接口
地址:http://www.weather.com.cn/data/ sk/【城市代码】.html
例如:查询北京实时天气:
http://www.weather.com.cn/data/sk/101010100.html
结果:
{"weatherinfo":{"city":"北京","cityid":"101010100","temp":"13","WD":"南风","WS":"2","SD":"59%","WSE":"2","time":"10:30","isRadar":"1","Radar":"JC_RADAR_AZ9010_JB”}}


2、今日天气接口
地址:http://www.weather.com.cn/data/cityinfo/【城市代码】.html
例如:查询北京今日天气:
http://www.weather.com.cn/data/cityinfo/101010100.html
结果:
{"weatherinfo":{"city":"北京","cityid":"101010100","temp1":"15","temp2":"5℃","weather":"阵雨转阴","img1":"d3.gif","img2":"n2.gif","ptime":"08:00”}
}
  3、今日及未来天气接口【内容最详细】
地址:http://m.weather.com.cn/data/【城市代码】.html
例如:查询北京今日及未来天气:
http://m.weather.com.cn/data/101010100.html
结果:
{"weatherinfo":{"city":"北京","city_en":"beijing","date_y":"2013年10月22日","date":"",
"week":"星期二","fchh":"08","cityid":"101010100","temp1":"15℃~5℃","temp2":"15℃~4℃……
…【省略】"index_tr":"适宜","index_co":"较舒适",
"st1":"11","st2":"1","st3":"13","st4":"5","st5":"14","st6":"4","index_cl":"较不宜",
"index_ls":"不太适宜","index_ag":"不易发"}}