mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-23 16:59:54 +08:00
26 lines
343 B
Plaintext
26 lines
343 B
Plaintext
|
netcdf test_groups1 {
|
||
|
dimensions:
|
||
|
dim1 = 5 ;
|
||
|
|
||
|
group: g {
|
||
|
dimensions:
|
||
|
dim2 = 3 ;
|
||
|
|
||
|
group: h {
|
||
|
dimensions:
|
||
|
dim3 = 7 ;
|
||
|
variables:
|
||
|
int v1(dim1) ;
|
||
|
float v2(dim2) ;
|
||
|
} // group h
|
||
|
|
||
|
group: i {
|
||
|
dimensions:
|
||
|
dim3 = 7 ;
|
||
|
variables:
|
||
|
int v1(dim1) ;
|
||
|
float v3(dim3) ;
|
||
|
} // group i
|
||
|
} // group g
|
||
|
}
|