modified: app.py

This commit is contained in:
simon
2026-04-24 10:36:59 +02:00
parent f987cd6c09
commit 7ed76d3b31

2
app.py
View File

@@ -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")