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.
 
 
 
 
 
 

35 lines
469 B

netcdf ref_dimscope {
dimensions:
dim1 = 5 ;
group: g {
dimensions:
dim2 = 3 ;
group: h {
dimensions:
dim3 = 7 ;
variables:
int v1(dim1);
float v2(dim2);
data:
v1 = _, _, _, _, _ ;
v2 = _, _, _ ;
} // group h
group: i {
dimensions:
dim3 = 7 ;
variables:
int v1(dim1);
float v3(dim3);
data:
v1 = _, _, _, _, _ ;
v3 = _, _, _, _, _, _, _ ;
} // group i
} // group g
}