We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 255df41 commit 7100b49Copy full SHA for 7100b49
weather_provider_api/routers/weather/sources/cds/factors.py
@@ -16,7 +16,10 @@
16
file_to_use_era5land = get_var_map_file_location("era5land_var_map.json")
17
18
with open(file_to_use_era5sl, "r") as _f:
19
- era5sl_factors = json.load(_f)
+ era5sl_factors: dict = json.load(_f)
20
+ for factor in ["mwd", "mwp", "swh"]:
21
+ era5sl_factors.pop(factor)
22
+
23
24
with open(file_to_use_era5land, "r") as _f:
25
era5land_factors = json.load(_f)
0 commit comments