netcdf-c/ncdap_test/expectremote4/test.01.dmp

42 lines
674 B
Plaintext
Raw Normal View History

2010-06-03 21:24:43 +08:00
netcdf test {
variables:
ubyte b ;
string b:Description = "A test byte" ;
string b:units = "unknown" ;
int i32 ;
string i32:Description = "A 32 bit test server int" ;
string i32:units = "unknown" ;
uint ui32 ;
short i16 ;
ushort ui16 ;
float f32 ;
double f64 ;
string s ;
string u ;
// 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)." ;
u = "http://www.dods.org" ;
}