- 积分
- 12
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2019-2-24
- 最后登录
- 1970-1-1
|
10金钱
求助,在使用GrADS画湿位涡是关于CTL文件的问题。
以下是我得到的原作者ctl文件内容:
DSET f:\NCEP\thse.dat
TITLE Upper Data
undef -9.99E33
xdef 45 linear 50 2.5
ydef 25 linear 10 2.5
zdef 8 levels 1000 925 850 700 600 500 400 300
tdef 53 linear 0z20Aug2005 6hr
vars 3
thse 8 99 temps
uwnd 8 99 u-wind
vwnd 8 99 v-wind
Endvars
由于我的数据是NCEP/NCAR一日四次的再分析数据,与原作者使用的数据有一些出入,因此需要更改上述ctl文件中的部分内容以适用于我的dat数据。我需要的时间段是1991年7月5日00时至6日12时,即t = 741至t = 747.
以下是我的数据内容:
netcdf uwnd.1991 {
dimensions:
lon = 144 ;
lat = 73 ;
level = 17 ;
time = UNLIMITED ; // (1460 currently)
variables:
float level(level) ;
level:units = "millibar" ;
level:actual_range = 1000.f, 10.f ;
level:long_name = "Level" ;
level:positive = "down" ;
level:GRIB_id = 100s ;
level:GRIB_name = "hPa" ;
level:axis = "Z" ;
float lat(lat) ;
lat:units = "degrees_north" ;
lat:actual_range = 90.f, -90.f ;
lat:long_name = "Latitude" ;
lat:standard_name = "latitude" ;
lat:axis = "Y" ;
float lon(lon) ;
lon:units = "degrees_east" ;
lon:long_name = "Longitude" ;
lon:actual_range = 0.f, 357.5f ;
lon:standard_name = "longitude" ;
lon:axis = "X" ;
double time(time) ;
time:long_name = "Time" ;
time:delta_t = "0000-00-00 06:00:00" ;
time:standard_name = "time" ;
time:axis = "T" ;
time:units = "hours since 1800-01-01 00:00:0.0" ;
time:actual_range = 1674264., 1683018. ;
float uwnd(time, level, lat, lon) ;
uwnd:long_name = "u-wind" ;
uwnd:units = "m/s" ;
uwnd:precision = 2s ;
uwnd:least_significant_digit = 1s ;
uwnd:GRIB_id = 33s ;
uwnd:GRIB_name = "UGRD" ;
uwnd:var_desc = "u-wind" ;
uwnd:level_desc = "Multiple levels" ;
uwnd:statistic = "Individual Obs" ;
uwnd:parent_stat = "Other" ;
uwnd:missing_value = -9.96921e+36f ;
uwnd:actual_range = -104.3f, 132.6f ;
uwnd:valid_range = -125.f, 160.f ;
uwnd:dataset = "NCEP Reanalysis" ;
|
|