- 积分
- 59
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2012-11-20
- 最后登录
- 1970-1-1
|
楼主 |
发表于 2014-4-11 22:10:52
|
显示全部楼层
netcdf 01 {
dimensions:
time = UNLIMITED ; // (60 currently)
bnds = 2 ;
lat = 90 ;
lon = 144 ;
variables:
double time(time) ;
time:long_name = "time" ;
time:units = "days since 1860-01-01 00:00:00" ;
time:cartesian_axis = "T" ;
time:calendar_type = "noleap" ;
time:calendar = "noleap" ;
time:bounds = "time_bnds" ;
time:standard_name = "time" ;
time:axis = "T" ;
double time_bnds(time, bnds) ;
time_bnds:long_name = "time axis boundaries" ;
time_bnds:units = "days since 1860-01-01 00:00:00" ;
double lat(lat) ;
lat:long_name = "latitude" ;
lat:units = "degrees_north" ;
lat:bounds = "lat_bnds" ;
lat:standard_name = "latitude" ;
lat:axis = "Y" ;
double lat_bnds(lat, bnds) ;
double lon(lon) ;
lon:long_name = "longitude" ;
lon:units = "degrees_east" ;
lon:bounds = "lon_bnds" ;
lon:standard_name = "longitude" ;
lon:axis = "X" ;
double lon_bnds(lon, bnds) ;
float tas(time, lat, lon) ;
tas:long_name = "Near-Surface Air Temperature" ;
tas:units = "K" ;
tas:valid_range = 100.f, 400.f ;
tas:cell_methods = "time: mean" ;
tas:interp_method = "conserve_order2" ;
tas:coordinates = "height" ;
tas:missing_value = 1.e+20f ;
tas:_FillValue = 1.e+20f ;
tas:standard_name = "air_temperature" ;
tas:original_units = "deg_k" ;
tas:original_name = "t_ref" ;
tas:cell_measures = "area: areacella" ;
tas:associated_files = "baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation areacella: areacella_fx_GFDL-CM3_historical_r0i0p0.nc" ;
double average_T1(time) ;
average_T1:long_name = "Start time for average period" ;
average_T1:units = "days since 1860-01-01 00:00:00" ;
double average_T2(time) ;
average_T2:long_name = "End time for average period" ;
average_T2:units = "days since 1860-01-01 00:00:00" ;
double average_DT(time) ;
average_DT:long_name = "Length of average period" ;
average_DT:units = "days" ;
double height ;
height:units = "m" ;
height:positive = "up" ;
height:long_name = "height" ;
height:standard_name = "height" ;
height:axis = "Z" ;
// global attributes:
:title = "NOAA GFDL GFDL-CM3, historical (run 1) experiment output for CMIP5 AR5" ;
:institute_id = "NOAA GFDL" ;
:source = "GFDL-CM3 2010 atmosphere: AM3 (AM3p9,C48L48); sea ice: SIS (SISp2,Tripolar360x200); land: LM3 (LM3p7_cCM3,C48); ocean: MOM4 (MOM4p1_x1_Z50_cCM3,Tripolar360x200L50)" ;
:contact = "gfdl.climate.model.info@noaa.gov" ;
:project_id = "CMIP5" ;
:table_id = "Table Amon (31 Jan 2011)" ;
:experiment_id = "historical" ;
:realization = 1 ;
:modeling_realm = "atmos" ;
:tracking_id = "4fcf61e5-ee34-49b5-b41c-9e114497a06a" ;
:Conventions = "CF-1.4" ;
:references = "The GFDL Data Portal (http://nomads.gfdl.noaa.gov/) provides access to NOAA/GFDL\'s publicly available model input and output data sets. From this web site one can view and download data sets and documentation, including those related to the GFDL coupled models experiments run for the IPCC\'s 5th Assessment Report and the US CCSP." ;
:comment = "GFDL experiment name: CM3Z_D1_1860-2005_AllForc_H1\n",
"GFDL parent experiment name: CM3Z_Control-1860_D1\n",
"CMIP5 experiment ID: historical\n",
"Initial conditions from this experiment (CMIP5 expt. 3.2 Core) were taken from 01Jan0001 of the 1860 control model experiment CM3Z_Control-1860_D1.\n",
"Forcing agents (7 WMGGs, tropospheric and stratospheric ozone, land use, volcanoes, solar, sulfate, black carbon,\n",
"organic carbon, dust, and sea salt) vary historically from 1860-2005 following prescribed emission or concentration\n",
"timeseries or internally calculated emissions. This model includes direct and indirect aerosol effects." ;
:gfdl_experiment_name = "CM3Z_D1_1860-2005_AllForc_H1" ;
:creation_date = "2011-09-15T18:47:13Z" ;
:model_id = "GFDL-CM3" ;
:branch_time = "0.0" ;
:experiment = "historical" ;
:forcing = "GHG,SA,Oz,LU,Sl,Vl,SS,BC,MD,OC (GHG includes CO2, CH4, N2O, CFC11, CFC12, HCFC22, CFC113)" ;
:frequency = "mon" ;
:initialization_method = 1 ;
:parent_experiment_id = "piControl" ;
:physics_version = 1 ;
:product = "output1" ;
:institution = "NOAA GFDL(201 Forrestal Rd, Princeton, NJ, 08540)" ;
:history = "File was processed by fremetar (GFDL analog of CMOR). TripleID: [exper_id_1XhP9uft45,realiz_id_4e0zLckGg3,run_id_HhaU8NYVBh]" ;
:parent_experiment_rip = "r1i1p1" ;
}
|
|