OpenWeatherMap API 2.5中的降水字段

时间:2013-09-07 22:20:56

标签: api weather-api openweathermap

我正在使用Open Weather Map API进行天气预报。 目前可用的版本是2.5 这是一段XML

...
<time day="2013-09-07">
<symbol number="500" name="light rain" var="10d"/>
<precipitation value="2.5" type="rain"/>
<windDirection deg="8" code="N" name="North"/>
<windSpeed mps="1.16" name="Calm"/>
<temperature day="14.56" min="12.79" max="14.56" night="12.79" eve="14.56" morn="14.56"/>
<pressure unit="hPa" value="973.09"/>
<humidity value="98" unit="%"/>
<clouds value="broken clouds" all="68" unit="%"/>
</time>
...

这是the API request

有没有人知道降水字段的单位?

2.5毫米的雨?也许是概率?

提前致谢。

4 个答案:

答案 0 :(得分:5)

他们对protocol of weather station data transmission的描述描述了以雪和雨为单位的上传数据。他们的JSON API v.1.0 (previous one)降水量概率。

总而言之,它是以mm为单位的降水量。

答案 1 :(得分:1)

可能wiki可以帮助你让事情变得更加清晰.. - &GT; http://en.wikipedia.org/wiki/Precipitation

我现在在家用自动化的工业PLC上使用api 2.5进行编码 它运行得很好。

答案 2 :(得分:1)

你可以从forecast.io

获得预测的降水概率(据我所知,不是历史记录)

{&#34;时间&#34;:1421080800,&#34; precipIntensity&#34;:0.0401,&#34; precipIntensityError&#34;:0.0099,&#34; precipProbability&#34;:0.47,&# 34; precipType&#34;:&#34;雨&#34;}

答案 3 :(得分:0)

根据他们的API文档(http://openweathermap.org/weather-data),此值表示过去3小时内的降雨量(降水量),单位为毫米(毫米)。

如果提供降雨概率会很好,但我不这么认为。