我目前正在尝试配置 rnoaa 库以将城市、州数据与气象站连接起来,从而输出 ANNUAL 天气数据,即温度。我已经包含了一个硬编码输入以供参考,但我打算最终在数百个地理编码城市中提供服务。这不是问题,而是检索数据。
require(rnoaa)
require(ggmap)
city<-geocode("birmingham, alabama", output = "all")
bounds<-city$results[[1]]$geometry$bounds
se<-bounds$southwest$lat
sw<-bounds$southwest$lng
ne<-bounds$northeast$lat
nw<-bounds$northeast$lng
stations<-ncdc_stations(extent = c(se, sw, ne, nw),token = noaakey)
我正在计算地理区域周围的 MBR(矩形),在本例中为伯明翰,然后获取站点列表。然后我拉出station_id,然后尝试使用任何类型的参数检索结果但没有成功。我希望将每年的气温与每个城市联系起来。
test <- ncdc(datasetid = "ANNUAL", locationid = topStation[1],
datatypeid = "DSNW",startdate = "2000-01-01", enddate = "2010-01-01",
limit = 1000, token = noaakey)
Warning message:
Sorry, no data found