- 积分
- 80
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2015-7-20
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
nc文件如下所示,想删掉变量time_bnds及维度bnds,方便文件合并,cdo或nco如何删除
dimensions:
time = UNLIMITED ; // (283 currently)
bnds = 2 ;
lon = 144 ;
lat = 73 ;
variables:
float time(time) ;
time:standard_name = "time" ;
time:long_name = "reference time" ;
time:bounds = "time_bnds" ;
time:units = "days since 1970-01-01 00:00:00" ;
time:calendar = "standard" ;
time:axis = "T" ;
double time_bnds(time, bnds) ;
float lon(lon) ;
lon:standard_name = "longitude" ;
lon:long_name = "Longitude" ;
lon:units = "degrees_east" ;
lon:axis = "X" ;
float lat(lat) ;
lat:standard_name = "latitude" ;
lat:long_name = "Latitude" ;
lat:units = "degrees_north" ;
lat:axis = "Y" ;
float olr(time, lat, lon) ;
olr:standard_name = "toa_outgoing_longwave_flux" ;
olr:long_name = "NOAA Climate Data Record of Daily Mean Upward Longwave Flux at Top of the Atmosphere" ;
olr:units = "W m-2" ;
olr:_FillValue = 0.f ;
olr:missing_value = 0.f ;
olr:cell_methods = "time: mean area: mean" ;
|
|