From 50a5fc958b1705580610ce0b3f50dc3e6156fbc0 Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Mon, 15 Apr 2024 17:33:01 +0200 Subject: add modifier --- aggregator/dwd_icon.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'aggregator') diff --git a/aggregator/dwd_icon.py b/aggregator/dwd_icon.py index 0827469..6df905c 100755 --- a/aggregator/dwd_icon.py +++ b/aggregator/dwd_icon.py @@ -113,7 +113,9 @@ def load_data(name, output, description = None, clean = False, force_filename = if clean: clean_output_dir(output, filename) - ds = xr.load_dataset(target, engine='cfgrib') + # we drop heightAboveGround to allow 2m and 10m values to be merged down to one dataset + ds = xr.load_dataset(target, engine='cfgrib', drop_variables='heightAboveGround') + if description is not None: ds.attrs['_description'] = description return ds -- cgit v1.2.3