modified: app.py
This commit is contained in:
2
app.py
2
app.py
@@ -545,7 +545,7 @@ def get_mosmix_forecast(lat, lon, hours=72):
|
|||||||
rprob = p.get("probability_precipitation_height_gt_0_1mm_last_1h")
|
rprob = p.get("probability_precipitation_height_gt_0_1mm_last_1h")
|
||||||
rain_prob = round(float(rprob)*100) if not _isnan(rprob) else None
|
rain_prob = round(float(rprob)*100) if not _isnan(rprob) else None
|
||||||
n = p.get("cloud_cover_total")
|
n = p.get("cloud_cover_total")
|
||||||
clouds = round(float(n)) if not _isnan(n) else None
|
clouds = round(float(n)*100) if not _isnan(n) else None
|
||||||
sun = p.get("sunshine_duration")
|
sun = p.get("sunshine_duration")
|
||||||
sun_min = round(float(sun)/60) if not _isnan(sun) else 0
|
sun_min = round(float(sun)/60) if not _isnan(sun) else 0
|
||||||
wd = p.get("wind_direction")
|
wd = p.get("wind_direction")
|
||||||
|
|||||||
Reference in New Issue
Block a user