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
637 B

2 years ago
netcdf ref_oldformat {
dimensions:
lat = 8 ;
variables:
int lat(lat) ;
lat:_FillValue = -1 ;
lat:lat_attr = "latitude" ;
data:
lat = 1, 2, 3, 4, 5, 6, 7, 8 ;
group: g1 {
dimensions:
lon = 10 ;
variables:
int pos(lat, lon) ;
pos:_FillValue = -1 ;
pos:pos_attr = "latXlon" ;
// group attributes:
:g1_attr = 17 ;
data:
pos =
_, _, _, _, _, _, _, _, _, _,
_, _, _, _, _, _, _, _, _, _,
_, _, _, _, _, _, _, _, _, _,
_, _, _, _, _, _, _, _, _, _,
_, _, _, _, _, _, _, _, _, _,
_, _, _, _, _, _, _, _, _, _,
_, _, _, _, _, _, _, _, _, _,
_, _, _, _, _, _, _, _, _, _ ;
} // group g1
}