Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/pyaps3/autoget.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,10 @@ def ECMWFdload(bdate,hr,filedir,model='ERA5',datatype='fc',humidity='Q',snwe=Non

# download a geographical area subset
if snwe is not None:
s, n, w, e = snwe
s, n, w, e = [float(v) for v in snwe]
indict['area'] = [n, w, s, e]


# Assert grib file not yet downloaded
if not os.path.exists(fname):
print(f'Downloading {i+1} of {len(bdate)}: {fname} ')
Expand Down