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.
 
 
 
 
 
 

29 lines
497 B

netcdf test_misc1 {
dimensions:
lat = 6 ;
lon = 4 ;
time = UNLIMITED ; // (0 currently)
unlim = UNLIMITED ; // (3 currently)
variables:
float lat(lat) ;
lat:units = "d" ;
float lon(lon) ;
lon:units = "d" ;
double time(time) ;
time:units = "s" ;
float pr(time, lat, lon) ;
pr:standard_name = "a" ;
pr:units = "h" ;
float var(unlim) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
:title = "e" ;
data:
lat = _, _, _, _, _, _ ;
lon = _, _, _, _ ;
var = 0, 1, 3 ;
}