Skip to content

Commit

Permalink
fix lat lon parameter, issue #113
Browse files Browse the repository at this point in the history
  • Loading branch information
FILHOL Simon committed Dec 11, 2024
1 parent fd2adc4 commit ac8d71a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TopoPyScale/fetch_era5.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def era5_request_surf(dataset, year, month, bbox, target, product, time):
'31'
],
'time': time,
'grid': [0.25, 0.25],
'grid': "0.25/0.25",
'format': 'netcdf'
},
target)
Expand Down Expand Up @@ -220,7 +220,7 @@ def era5_request_plev(dataset, year, month, bbox, target, product, time, plevels
'31'
],
'time': time,
'grid': [0.25, 0.25],
'grid': "0.25/0.25",
},
target)
print(target + " complete")
Expand Down

0 comments on commit ac8d71a

Please sign in to comment.