-- Dr. Joel R. Mitchelson Observational Climate Data Software Specialist Met Office Hadley Centre FitzRoy Road Exeter Devon EX1 3PB United Kingdom -- // Example CDL fragment representing a single day of data in one NetCDF file. // To represent more than one day multiple files could be used, // or else a single file with the localtime dimension set to equal the number of days. dimensions: localtime = UNLIMITED ; // (1 currently) latitude = 720 ; longitude = 1440 ; bounds = 2 ; variables: float time(localtime, longitude) ; time:units = "days since 1850-1-1 0:0:0" ; time:long_name = "Time (days)" ; time:standard_name = "time" ; time:bounds = "timebounds" ; time:calendar = "gregorian" ; float timebounds(localtime, longitude, bounds) float latitude(latitude) ; latitude:units = "degrees_north" ; latitude:long_name = "Latitude (deg)" ; latitude:standard_name = "latitude" ; float longitude(longitude) ; longitude:units = "degrees_east" ; longitude:long_name = "Longitude (deg)" ; longitude:standard_name = "longitude" ; short tas(localtime, latitude, longitude) ; tas:units = "K" ; tas:long_name = "Mean daily surface air temperature (K)" ; tas:standard_name = "air_temperature" ; tas:coordinates = "time" ; tas:cell_methods = "time: mean" ; tas:_FillValue = -32768s ; tas:scale_factor = 0.002 ; tas:add_offset = 273.15 ;Received on Thu Jul 28 2016 - 05:58:49 BST
This archive was generated by hypermail 2.3.0 : Tue Sep 13 2022 - 23:02:42 BST