Cloned library NetCDF-C-4.9.2 with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
774 B

2 years ago
netcdf tmp_groups_regular {
dimensions:
_zdim_3 = 3 ;
_zdim_2 = 2 ;
_zdim_10 = 10 ;
// global attributes:
:_Format = "netCDF-4" ;
group: MyGroup {
variables:
int dset1(_zdim_3, _zdim_3) ;
dset1:_Storage = "chunked" ;
dset1:_ChunkSizes = 3, 3 ;
dset1:_NoFill = "true" ;
// group attributes:
data:
dset1 =
1, 2, 3,
1, 2, 3,
1, 2, 3 ;
group: Group_A {
variables:
int dset2(_zdim_2, _zdim_10) ;
dset2:_Storage = "chunked" ;
dset2:_ChunkSizes = 2, 10 ;
dset2:_NoFill = "true" ;
// group attributes:
data:
dset2 =
1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ;
} // group Group_A
group: Group_B {
// group attributes:
} // group Group_B
} // group MyGroup
}