You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
470 B
33 lines
470 B
netcdf test {
|
|
dimensions:
|
|
maxStrlen64 = 64 ;
|
|
variables:
|
|
byte types.b ;
|
|
int types.i32 ;
|
|
int types.ui32 ;
|
|
short types.i16 ;
|
|
short types.ui16 ;
|
|
float types.f32 ;
|
|
double types.f64 ;
|
|
char types.s(maxStrlen64) ;
|
|
char types.u(maxStrlen64) ;
|
|
data:
|
|
|
|
types.b = 0 ;
|
|
|
|
types.i32 = 1 ;
|
|
|
|
types.ui32 = 0 ;
|
|
|
|
types.i16 = 0 ;
|
|
|
|
types.ui16 = 0 ;
|
|
|
|
types.f32 = 0 ;
|
|
|
|
types.f64 = 1000 ;
|
|
|
|
types.s = "This is a data test string (pass 0)." ;
|
|
|
|
types.u = "http://www.dods.org" ;
|
|
}
|
|
|