Skip to content

Commit ba3c10e

Browse files
author
Karim Bahgat
committed
fix: keep era5 downloads as-is to ensure consistent dataset usage with manual downloads
1 parent 4eaf144 commit ba3c10e

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

dhis2eo/data/cds/era5_land/hourly.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,6 @@ def fetch_month(year, month, bbox, variables):
4949
# load lazily from disk using xarray
5050
ds = xr.open_dataset(data.path)
5151

52-
# clean unnecessary data
53-
ds = ds.drop_vars(['number', 'expver'])
54-
5552
# return
5653
return ds
5754

dhis2eo/data/cds/era5_land/monthly.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ def fetch_years(years, months, bbox, variables):
4444
# load lazily from disk using xarray
4545
ds = xr.open_dataset(data.path)
4646

47-
# clean unnecessary data
48-
ds = ds.drop_vars(['number', 'expver'])
49-
5047
# return
5148
return ds
5249

0 commit comments

Comments
 (0)