登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
请问哪位大神知道这个是什么错误呀,这改了半天都没有效果
下面是我的python代码
import cdsapi
c = cdsapi.Client()
c.retrieve(
'reanalysis-era5-pressure-levels-monthly-means',
{
'format':'netcdf',
'product_type':'monthly_averaged_reanalysis',
'variable':[
'u_component_of_wind','v_component_of_wind','vorticity'
],
'pressure_level':[
'200','850'
],
'year':[
'1979','1980','1981',
'1982','1983','1984',
'1985','1986','1987',
'1988','1989','1990',
'1991','1992','1993',
'1994','1995','1996',
'1997','1998','1999',
'2000','2001','2002',
'2003','2004','2005',
'2006','2007','2008',
'2009','2010','2011',
'2012','2013','2014',
'2015','2016','2017',
'2018'
],
'month':[
'05','06','07',
'08','09','10'
]
},
'download.nc')
|