mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
25 lines
550 B
Plaintext
25 lines
550 B
Plaintext
netcdf NestedSeq2 {
|
|
dimensions:
|
|
unlimited = UNLIMITED ; // (0 currently)
|
|
person1 = 5 ;
|
|
person2 = 5 ;
|
|
variables:
|
|
int person1.age(person1) ;
|
|
int person1.size(person1) ;
|
|
short person1.stuff.foo(unlimited) ;
|
|
short person1.stuff.bar(unlimited) ;
|
|
int person2.age(person2) ;
|
|
short person2.stuff.foo(unlimited) ;
|
|
short person2.stuff.bar(unlimited) ;
|
|
int person2.size(person2) ;
|
|
data:
|
|
|
|
person1.age = 1, 3, 8, 21, 55 ;
|
|
|
|
person1.size = 2, 5, 13, 34, 89 ;
|
|
|
|
person2.age = 144, 377, 987, 2584, 6765 ;
|
|
|
|
person2.size = 233, 610, 1597, 4181, 10946 ;
|
|
}
|