mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
33 lines
885 B
Plaintext
33 lines
885 B
Plaintext
|
netcdf coads_wspd {
|
||
|
dimensions:
|
||
|
TIME = 1680 ;
|
||
|
LAT = 90 ;
|
||
|
LON = 180 ;
|
||
|
TIMEedges = 1681 ;
|
||
|
variables:
|
||
|
double LON(LON) ;
|
||
|
LON:units = "degrees_east" ;
|
||
|
LON:modulo = " " ;
|
||
|
LON:point_spacing = "even" ;
|
||
|
double LAT(LAT) ;
|
||
|
LAT:units = "degrees_north" ;
|
||
|
LAT:point_spacing = "even" ;
|
||
|
double TIME(TIME) ;
|
||
|
TIME:units = "days since 1700-01-01 00:00:00" ;
|
||
|
TIME:time_origin = "1-JAN-1700" ;
|
||
|
TIME:point_spacing = "uneven" ;
|
||
|
TIME:edges = "TIMEedges" ;
|
||
|
double TIMEedges(TIMEedges) ;
|
||
|
TIMEedges:edges = " " ;
|
||
|
float WSPD(TIME, LAT, LON) ;
|
||
|
WSPD:missing_value = -1.e+34f ;
|
||
|
WSPD:_FillValue = -1.e+34f ;
|
||
|
WSPD:long_name = "Wind Speed" ;
|
||
|
WSPD:history = "From all_coads_grid" ;
|
||
|
WSPD:units = "m/s" ;
|
||
|
|
||
|
// global attributes:
|
||
|
:history = "FERRET V4.11 (debug/no GUI) 19-Nov-95FERRET V4.20 (debug/no GUI) 12-Mar-96" ;
|
||
|
:title = "COADS Surface Marine Observations (1854-1993)" ;
|
||
|
}
|