我正在尝试使用 wunderground api 按纬度和经度获取历史天气数据。
这是我的python代码:
import requests
import pprint
data = requests.get('http://api.wunderground.com/api/<MY_KEY>/history_199271/q/12.3,-95.9.json').json()
pprint.pprint(data)
回复:
{'response': {'error': {'description': 'No cities match your search query',
'type': 'querynotfound'},
'features': {'history': 1},
'termsofService': 'http://www.wunderground.com/weather/api/d/terms.html',
'version': '0.1'}}
你知道出了什么问题吗?
编辑:如果您知道任何其他通过地理坐标提供历史天气数据的 API 或 python 模块,那也可以。