気象情報API「Weather Underground API」を使ってみる
2017-10-28-1
[WebAPI]
OpenWeatherMap, Dark SKy に引き続き、天気情報のAPIである Weather Underground API を使ってみた。
APIの利用には登録必要。
無料のプランだと、500アクセス/1日、10アクセス/分。
使うのは conditions, forecast, hourly あたりか。
APIからのデータ取得サンプル。
一部手を加えている(例えばAPI Keyはダミー)。
場所指定は東京(Shinjuku,Tokyo)の緯度経度、35.69,139.69。
なんかデータがいちいち大きい気がする。
細かく指定しなくていいかわりに余計なものが多い。
APIの利用には登録必要。
無料のプランだと、500アクセス/1日、10アクセス/分。
- Weather Forecast & Reports - Long Range & Local | Wunderground | Weather Underground
- API | Weather Underground
- Weather API: Documentation
- conditions
Returns the current temperature, weather condition, humidity, wind, 'feels like' temperature, barometric pressure, and visibility.
- forecast
Returns a summary of the weather for the next 3 days.
- forecast10day
Returns a summary of the weather for the next 10 days.
- history
Returns a summary of the observed weather for the specified date.
- hourly
- 1時間ごとの forecast、説明がないけど36時間分みたい
- hourly10day
Returns a summary of the weather for the next 10 days.
- conditions
使うのは conditions, forecast, hourly あたりか。
データ取得例
APIからのデータ取得サンプル。
一部手を加えている(例えばAPI Keyはダミー)。
場所指定は東京(Shinjuku,Tokyo)の緯度経度、35.69,139.69。
- conditions:《見る/隠す》
- forecast:《見る/隠す》
なんかデータがいちいち大きい気がする。
細かく指定しなくていいかわりに余計なものが多い。
参考
この記事に言及しているこのブログ内の記事