ecmwf / ecmwf-opendata

A package to download ECMWF open data
Apache License 2.0
160 stars 27 forks source link

【HELP】How to specify the output resolution #26

Open daihaozxn opened 8 months ago

daihaozxn commented 8 months ago

"From the documentation about the ECMWF open data: (https://www.ecmwf.int/en/forecasts/datasets/open-data). Products are produced at 0.4 degrees resolution in GRIB2 format unless stated otherwise." How do I state the output resolution of the data products (e.g. HRES) by ecmwf-api-client Python package? It seems that there are no related request keywords such as grid or resolution that can be specified. Thank you in advance.

hammad93 commented 7 months ago

Alternatively, you could download the product at 0.4 degrees resolution and then reproject it to your liking. https://stackoverflow.com/questions/7719651/how-can-i-change-the-resolution-of-a-raster-using-gdal

daihaozxn commented 7 months ago

Alternatively, you could download the product at 0.4 degrees resolution and then reproject it to your liking. https://stackoverflow.com/questions/7719651/how-can-i-change-the-resolution-of-a-raster-using-gdal

Thank you very much. I will try.