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.
 
 
 
 
 
 

55 lines
807 B

netcdf ref_tst_group_data {
dimensions:
dim = 4 ;
variables:
float var(dim) ;
var:units = "m/s" ;
// global attributes:
:title = "for testing groups" ;
data:
var = 1, 2, 3, 4 ;
group: g1 {
dimensions:
dim = 1 ;
variables:
float var(dim) ;
var:units = "km/hour" ;
// global attributes:
:title = "in first group" ;
data:
var = 1 ;
} // group g1
group: g2 {
dimensions:
dim = 2 ;
variables:
float var(dim) ;
var:units = "cm/sec" ;
// global attributes:
:title = "in second group" ;
data:
var = 1, 2 ;
group: g3 {
dimensions:
dim = 3 ;
variables:
float var(dim) ;
var:units = "mm/msec" ;
// global attributes:
:title = "in third group" ;
data:
var = 1, 2, 3 ;
} // group g3
} // group g2
}