2010-06-03 21:24:43 +08:00
|
|
|
netcdf test {
|
|
|
|
dimensions:
|
|
|
|
maxStrlen64 = 64 ;
|
|
|
|
variables:
|
|
|
|
byte b ;
|
|
|
|
b:Description = "A test byte" ;
|
|
|
|
b:units = "unknown" ;
|
|
|
|
int i32 ;
|
|
|
|
i32:Description = "A 32 bit test server int" ;
|
|
|
|
i32:units = "unknown" ;
|
|
|
|
int ui32 ;
|
|
|
|
short i16 ;
|
|
|
|
short ui16 ;
|
|
|
|
float f32 ;
|
|
|
|
double f64 ;
|
|
|
|
char s(maxStrlen64) ;
|
|
|
|
char u(maxStrlen64) ;
|
2015-11-30 11:38:12 +08:00
|
|
|
|
|
|
|
// global attributes:
|
|
|
|
:Facility.PrincipleInvestigator = "Mark Abbott\n",
|
|
|
|
"Ph.D" ;
|
|
|
|
:Facility.DataCenter = "COAS Environmental Computer Facility" ;
|
|
|
|
:Facility.DrifterType = "MetOcean WOCE/OCM" ;
|
2010-06-03 21:24:43 +08:00
|
|
|
data:
|
|
|
|
|
|
|
|
b = 0 ;
|
|
|
|
|
|
|
|
i32 = 1 ;
|
|
|
|
|
|
|
|
ui32 = 0 ;
|
|
|
|
|
|
|
|
i16 = 0 ;
|
|
|
|
|
|
|
|
ui16 = 0 ;
|
|
|
|
|
|
|
|
f32 = 0 ;
|
|
|
|
|
|
|
|
f64 = 1000 ;
|
|
|
|
|
|
|
|
s = "This is a data test string (pass 0)." ;
|
|
|
|
|
2012-01-30 02:56:29 +08:00
|
|
|
u = "http://www.dods.org" ;
|
2010-06-03 21:24:43 +08:00
|
|
|
}
|