- 积分
- 449
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2019-7-11
- 最后登录
- 1970-1-1
|
发表于 2020-6-17 21:31:46
|
显示全部楼层
https://confluence.ecmwf.int/display/CKB/How+to+download+ERA5
这个网址应该是era5,按这个是对的吧?但是我需要相对湿度、风速、短波辐射;不知道他们对应的变量名是什么?楼主有什么学习ERA5及下载ERA5得网址吗?谢谢~
#!/usr/bin/env python
import cdsapi
c = cdsapi.Client()
c.retrieve(
'reanalysis-era5-pressure-levels',
{
'product_type': 'reanalysis',
'variable': 'temperature',
'pressure_level': '1000',
'year': '2008',
'month': '01',
'day': '01',
'time': '12:00',
'format': 'grib', # Supported format: grib and netcdf. Default: grib
},
'download.grib') # Output file. Adapt as you wish. |
|