mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
30 lines
541 B
Plaintext
30 lines
541 B
Plaintext
netcdf test {
|
|
types:
|
|
compound integers_t {
|
|
ubyte b ;
|
|
int i32 ;
|
|
uint ui32 ;
|
|
short i16 ;
|
|
ushort ui16 ;
|
|
}; // integers_t
|
|
compound floats_t {
|
|
float f32 ;
|
|
double f64 ;
|
|
}; // floats_t
|
|
compound strings_t {
|
|
string s ;
|
|
string u ;
|
|
}; // strings_t
|
|
compound types_t {
|
|
integers_t integers ;
|
|
floats_t floats ;
|
|
strings_t strings ;
|
|
}; // types_t
|
|
variables:
|
|
types_t types ;
|
|
data:
|
|
|
|
types =
|
|
{{0, 1, 0, 0, 0}, {0, 1000}, {"This is a data test string (pass 0).", "http://www.dods.org"}} ;
|
|
}
|