Forcing data about ERA5 #233
-
I have successfully create the forcing data according to the 'README.ERA5' steps(https://github.com/NCAR/hrldas/blob/master/hrldas/docs/README.ERA5). |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You could try using CDSAPI |
Beta Was this translation helpful? Give feedback.
-
Dear @Zhoujieliang, Even through CDSAPI, the request can be placed only for one month. But you can loop the requests in with simple Python code. This Python code will download the ERA5_Land forcings months, which can later be merged together by the following command. (It is necessary to have both ecCodes and cdo (with ecCodes support) installed on the system) |
Beta Was this translation helpful? Give feedback.
Dear @Zhoujieliang,
Even through CDSAPI, the request can be placed only for one month. But you can loop the requests in with simple Python code.
Attached herewith.
download_era5land.txt
(In the above file just change your Python library path and make it a .py executable file)
This Python code will download the ERA5_Land forcings months, which can later be merged together by the following command.
cdo -O cat ERA5_global_2008*.grib ERA5_global_2008.grib
(It is necessary to have both ecCodes and cdo (with ecCodes support) installed on the system)