如何通过天气api获得降雨/降雨?

时间:2014-07-22 16:28:20

标签: python python-requests weather weather-api

我累了Open Weather Map,因为文档说它有“下雨”,但是当我打电话时却没有。所以我尝试了Python Weather API但是来自weather.com,noaa或yahoo天气的这些选项都没有降雨量或降雨量。所以我尝试了Wunderground,但这似乎只适用于美国城市,最重要的是我不会为购买钥匙而烦恼。

任何人都知道从哪里开始?

在开放的天气图上,它说它有雨,但我在结果中没有得到:

JSON调用示例

{"coord":{"lon":139,"lat":35},
"sys":{"country":"JP","sunrise":1369769524,"sunset":1369821049},
"weather":[{"id":804,"main":"clouds","description":"overcast clouds","icon":"04n"}],
"main":{"temp":289.5,"humidity":89,"pressure":1013,"temp_min":287.04,"temp_max":292.04},
"wind":{"speed":7.31,"deg":187.002},
"rain":{"3h":0},                      # on this line
"clouds":{"all":92},
"dt":1369824698,
"id":1851632,
"name":"Shuzenji", 
"cod":200}

然而,当我这样称呼时

from pprint import pprint
import requests
r = requests.get('http://api.openweathermap.org/data/2.5/weather?q=Vancouver')
pprint(r.json())

我得到的东西没有降雨/降水。

{u'base': u'cmc stations',
 u'clouds': {u'all': 0},
 u'cod': 200,
 u'coord': {u'lat': 49.25, u'lon': -123.12},
 u'dt': 1406042326,
 u'id': 6173331,
 u'main': {u'humidity': 77,
           u'pressure': 862,
           u'temp': 289.33,
           u'temp_max': 290.93,
           u'temp_min': 288.15},
 u'name': u'Vancouver',
 u'sys': {u'country': u'CA',
          u'message': 0.1867,
          u'sunrise': 1406032353,
          u'sunset': 1406088323},
 u'weather': [{u'description': u'Sky is Clear',
               u'icon': u'01d',
               u'id': 800,
               u'main': u'Clear'}],
 u'wind': {u'deg': 104.001, u'speed': 2.75}}

2 个答案:

答案 0 :(得分:2)

根据documentationweatherrain.3hsnow.3h都是optional参数,表明它们并不总是包含在结果中

我认为这意味着如果当时没有下雨或下雪,就不会报告下雨和下雪 - 例如在你的例子中说“天空晴朗” - 但它也是可能的这意味着他们只是不保证雨雪数据。

答案 1 :(得分:0)

我发现下雨了;)虽然不容易,但是成功了。它存在。

    fetch(https://api.openweathermap.org/data/2.5/weather?q=${city}&units=metric&appid=${apiKey})
  .then(res => res.json())
  .then(data => {
    console.log(data);
    const { pressure, temp, humidity } = data.main;
    const { speed, deg } = data.wind;
    const { description } = data.weather[0];
    const rain = data.rain['1h'];
    console.log(rain)
  });