- 积分
- 115
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-10-27
- 最后登录
- 1970-1-1
|
发表于 2015-3-9 14:14:30
|
显示全部楼层
遇到parallel netcdf 怎么办呢,头文件和你pdf文档里面的完全不一样呀,不知道该怎么写ctl
netcdf pres.sfc.mon.mean {
dimensions:
y = 277 ;
x = 349 ;
time = UNLIMITED ; // (432 currently)
nbnds = 2 ;
variables:
int Lambert_Conformal ;
Lambert_Conformal:grid_mapping_name = "lambert_conformal_conic" ;
Lambert_Conformal:standard_parallel = 50., 50. ;
Lambert_Conformal:longitude_of_central_meridian = -107. ;
Lambert_Conformal:latitude_of_projection_origin = 50. ;
Lambert_Conformal:false_easting = 5632642.22547 ;
Lambert_Conformal:false_northing = 4612545.65137 ;
float lat(y, x) ;
lat:long_name = "latitude coordinate" ;
lat:units = "degrees_north" ;
lat:axis = "Y" ;
lat:coordinate_defines = "point" ;
lat:standard_name = "latitude" ;
float lon(y, x) ;
lon:units = "degrees_east" ;
lon:long_name = "longitude coordinate" ;
lon:axis = "X" ;
lon:coordinate_defines = "point" ;
lon:standard_name = "longitude" ;
short pres(time, y, x) ;
pres:units = "Pa" ;
pres:long_name = "Monthly pressure at Surface" ;
pres:unpacked_valid_range = 40000.f, 115000.f ;
pres:precision = -1s ;
pres:actual_range = 63460.f, 104138.4f ;
pres:add_offset = 367660.f ;
pres:scale_factor = 10.f ;
pres:missing_value = 32766s ;
pres:valid_range = -32766s, -25266s ;
pres:_FillValue = -32767s ;
pres:GRIB_name = "PRES" ;
pres:GRIB_id = 1 ;
pres:var_desc = "Pressure" ;
pres:standard_name = "air_pressure" ;
pres:level_desc = "Surface" ;
pres:dataset = "NARR Monthly Averages" ;
pres:statistic = "Mean" ;
pres:parent_stat = "Individual Obs" ;
pres:grid_mapping = "Lambert_Conformal" ;
pres:coordinates = "lat lon" ;
pres:cell_methods = "time: mean (monthly from daily values)" ;
double time(time) ;
time:units = "hours since 1800-1-1 00:00:0.0" ;
time:long_name = "Time" ;
time:axis = "T" ;
time:standard_name = "time" ;
time:coordinate_defines = "start" ;
time:delta_t = "0000-01-00 00:00:00" ;
time:actual_range = 1569072., 1883904. ;
time:avg_period = "0000-01-00 00:00:00" ;
double time_bnds(time, nbnds) ;
time_bnds:long_name = "Time Boundaries" ;
float x(x) ;
x:long_name = "eastward distance from southwest corner of domain in projection coordinates" ;
x:units = "m" ;
x:standard_name = "projection_x_coordinate" ;
float y(y) ;
y:long_name = "northward distance from southwest corner of domain in projection coordinates" ;
y:units = "m" ;
y:standard_name = "projection_y_coordinate" ;
// global attributes:
:standardpar1 = 50. ;
:standardpar2 = 50.000001 ;
:centerlon = -107. ;
:centerlat = 50. ;
:latcorners = 1.000001f, 0.897945f, 46.3544f, 46.63433f ;
:loncorners = -145.5f, -68.32005f, -2.569891f, 148.6418f ;
:stream = "s1" ;
:title = "Monthly NARR" ;
:Conventions = "CF-1.0" ;
:history = "updated 2015/02 by NOAA/ESRL/PSD" ;
:institution = "National Centers for Environmental Prediction" ;
:platform = "Model" ;
:references = "http://wwwt.emc.ncep.noaa.gov/mmb/rreanl/index.html\n",
"http://www.esrl.noaa.gov/psd/data/gridded/data.narr.html" ;
:NCO = "4.0.0" ;
}
@兰溪之水,急盼解答,谢谢! |
|