You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm curious if I'm missing something or config is incorrect. Daily rain should show precipitation and percentage. Oddly I'm only seeing % and not number of mm of rain.
I'm seeing in the json returned:
"weather":[{"id":500,"main":"Rain","description":"light rain","icon":"10d"}],"pop":0.9,"rain":{"1h":0.1}},{"dt":1675983600,
Means that I should see 90% chance of rain with 1mm of rain. Oddly nothing shows up for the amount of rain.
The text was updated successfully, but these errors were encountered:
I'm curious if I'm missing something or config is incorrect. Daily rain should show precipitation and percentage. Oddly I'm only seeing % and not number of mm of rain.
fItem.precipitation = this.formatPrecipitation(fData.pop, fData.rain ? fData.rain["1h"] : null, fData.snow ? fData.snow["1h"] : null);
formatPrecipitation: function(percentChance, rainAccumulation, snowAccumulation) {
I'm seeing in the json returned:
"weather":[{"id":500,"main":"Rain","description":"light rain","icon":"10d"}],"pop":0.9,"rain":{"1h":0.1}},{"dt":1675983600,
Means that I should see 90% chance of rain with 1mm of rain. Oddly nothing shows up for the amount of rain.
The text was updated successfully, but these errors were encountered: