mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
20 lines
356 B
Plaintext
20 lines
356 B
Plaintext
netcdf NestedSeq2 {
|
|
dimensions:
|
|
person1 = 5 ;
|
|
person2 = 5 ;
|
|
variables:
|
|
int person1.age(person1) ;
|
|
int person1.size(person1) ;
|
|
int person2.age(person2) ;
|
|
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 ;
|
|
}
|