mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
20 lines
344 B
Plaintext
20 lines
344 B
Plaintext
netcdf test {
|
|
types:
|
|
compound person1_t {
|
|
string name ;
|
|
int age ;
|
|
}; // person1_t
|
|
compound person2_t {
|
|
string name ;
|
|
int age ;
|
|
}; // person2_t
|
|
variables:
|
|
person1_t person1 ;
|
|
person2_t person2 ;
|
|
data:
|
|
|
|
person1 = {"This is a data test string (pass 0).", 1} ;
|
|
|
|
person2 = {"This is a data test string (pass 1).", 2} ;
|
|
}
|