百度有个API store,专门为开发者提供API服务,网址为:百度API Store。
http://apistore.baidu.com/astore/serviceinfo/1798.html
1 接口说明
根据经纬度/城市名查询天气的结果
2 接口示例
http://api.map.baidu.com/telematics/v3/weather?location=北京&output=json&ak=yourkey
百度ak申请地址:
http://lbsyun.baidu.com/apiconsole/key
3 接口参数说明
参数类型 | 参数名称 | 是否必须 | 具体描述 |
---|---|---|---|
String | ak | true | 开发者密钥 |
String | sn | false | 若用户所用ak的校验方式为sn校验时该参数必须。 |
String | location | true | 输入城市名或经纬度,城市名称如:北京,经纬度格式为lng,lat坐标如: location=116.305145,39.982368;城市天气预报中间"|"分隔,location=116.305145,39.982368| 122.305145,36.982368|…. |
String | output | false | 输出的数据格式,默认为xml格式,当output设置为’json’时,输出的为json格式的数据; |
String | coord_type | false | 请求参数坐标类型,默认为gcj02经纬度坐标。允许的值为bd09ll、bd09mc、gcj02、wgs84。bd09ll表示百度经纬度坐标,bd09mc表示百度墨卡托坐标,gcj02表示经过国测局加密的坐标。wgs84表示gps获取的坐标。 |
4 返回结果
参数名称 | 含义 | 说明 | |
---|---|---|---|
currentCity | 当前城市 | 返回城市名 | |
status | 返回结果状态信息 | ||
date | 当前时间 | 年-月-日 | |
results | 天气预报信息 | 白天可返回近期3天的天气情况(今天、明天、后天)、晚上可返回近期4天的天气情况(今天、明天、后天、大后天) | |
results.currentCity | 当前城市 | ||
results.weather_data | weather_data.date | 天气预报时间 | |
weather_data.dayPictureUrl | 白天的天气预报图片url | ||
weather_data.nightPictureUrl | 晚上的天气预报图片url | ||
weather_data.weather | 天气状况 | 所有天气情况(”|”分隔符):晴|多云|阴|阵雨|雷阵雨|雷阵雨伴有冰雹|雨夹雪|小雨|中雨|大雨|暴雨|大暴雨|特大暴雨|阵雪|小雪| 中雪|大雪|暴雪|雾|冻雨|沙尘暴|小雨转中雨|中雨转大雨|大雨转暴雨|暴雨转大暴雨|大暴雨转特大暴雨|小雪转中雪|中雪转大雪|大雪转暴雪|浮 尘|扬沙|强沙尘暴|霾 | |
weather_data.wind | 风力 | ||
weather_data.temperature | 温度 |
返回JSON格式的数据
{ "error": 0, "status": "success", "date": "2016-07-19", "results": [ { "currentCity": "北京", "pm25": "105", "index": [ { "title": "穿衣", "zs": "舒适", "tipt": "穿衣指数", "des": "建议着长袖T恤、衬衫加单裤等服装。年老体弱者宜着针织长袖衬衫、马甲和长裤。" }, { "title": "洗车", "zs": "不宜", "tipt": "洗车指数", "des": "不宜洗车,未来24小时内有雨,如果在此期间洗车,雨水和路上的泥水可能会再次弄脏您的爱车。" }, { "title": "旅游", "zs": "较不宜", "tipt": "旅游指数", "des": "温度适宜的一天,风力不大,但有较强降水,会给您的出行产生很多麻烦,建议您最好还是多选择在室内活动吧!" }, { "title": "感冒", "zs": "易发", "tipt": "感冒指数", "des": "相对于今天将会出现大幅度降温,空气湿度较大,易发生感冒,请注意适当增加衣服。" }, { "title": "运动", "zs": "较不宜", "tipt": "运动指数", "des": "有较强降水,建议您选择在室内进行健身休闲运动。" }, { "title": "紫外线强度", "zs": "最弱", "tipt": "紫外线强度指数", "des": "属弱紫外线辐射天气,无需特别防护。若长期在户外,建议涂擦SPF在8-12之间的防晒护肤品。" } ], "weather_data": [ { "date": "周二 07月19日 (实时:23℃)", "dayPictureUrl": "http://api.map.baidu.com/images/weather/day/dayu.png", "nightPictureUrl": "http://api.map.baidu.com/images/weather/night/dayu.png", "weather": "中到大雨转大雨", "wind": "微风", "temperature": "26 ~ 22℃" }, { "date": "周三", "dayPictureUrl": "http://api.map.baidu.com/images/weather/day/dayu.png", "nightPictureUrl": "http://api.map.baidu.com/images/weather/night/zhenyu.png", "weather": "大雨转阵雨", "wind": "东北风3-4级", "temperature": "25 ~ 22℃" }, { "date": "周四", "dayPictureUrl": "http://api.map.baidu.com/images/weather/day/zhenyu.png", "nightPictureUrl": "http://api.map.baidu.com/images/weather/night/duoyun.png", "weather": "阵雨转多云", "wind": "微风", "temperature": "31 ~ 22℃" }, { "date": "周五", "dayPictureUrl": "http://api.map.baidu.com/images/weather/day/duoyun.png", "nightPictureUrl": "http://api.map.baidu.com/images/weather/night/duoyun.png", "weather": "多云", "wind": "微风", "temperature": "32 ~ 25℃" } ] } ] }
时间: 2024-11-05 22:04:08