API:
https://www.ncdc.noaa.gov/cdo-web/webservices/v2
参数:
CITY:US270013
指定明尼阿波利斯,明尼苏达州
datatypeid=TOBS
指定我想要观察到的温度
Python代码
url = 'https://www.ncdc.noaa.gov/cdo-web/api/v2/data?datasetid=GHCND&locationid=CITY:US270013&startdate=2016-05-01&enddate=2016-05-31&limit=1000&datatypeid=TOBS'
response = requests.get(url, headers = headers)
response = response.json()
stationData = pd.DataFrame(response['results'])
print(stationData.sort_values(by='station').to_string(index=False))
结果:
attributes datatype date station value
,,7,2400 TOBS 2016-05-01T00:00:00 GHCND:USC00211448 89
,,7,2400 TOBS 2016-05-14T00:00:00 GHCND:USC00211448 6
,,7,2400 TOBS 2016-05-07T00:00:00 GHCND:USC00211448 61
,,7,2400 TOBS 2016-05-16T00:00:00 GHCND:USC00211448 106
,,7,2400 TOBS 2016-05-26T00:00:00 GHCND:USC00211448 172
,,7,2400 TOBS 2016-05-28T00:00:00 GHCND:USC00211448 161
,,7,2400 TOBS 2016-05-17T00:00:00 GHCND:USC00211448 50
,,7,2400 TOBS 2016-05-06T00:00:00 GHCND:USC00211448 178
根据该表,2015年5月6日在明尼阿波利斯观测到的温度为178度。这显然是错误的,但他们的网站上几乎没有文档。他们的TOBS
是否遵循不同的温度标度,或者我应该使用不同的变量?
答案 0 :(得分:1)
来自文档:
ftp://ftp.ncdc.noaa.gov/pub/data/ghcn/daily/readme.txt
TOBS = Temperature at the time of observation (tenths of degrees C)
将结果除以10,乘以9/5 + 32转换为F(或您需要做的任何事情)。
明尼阿波利斯可能会在5月份冻结!