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.
 
 
 
 
 
 

44 lines
730 B

netcdf fillmismatch {
dimensions:
maxStrlen64 = 64 ;
variables:
byte b ;
b:Description = "A test byte" ;
b:units = "unknown" ;
int i32 ;
i32:Description = "A 32 bit test server int" ;
i32:units = "unknown" ;
i32:_FillValue = 100 ;
int ui32 ;
short i16 ;
short ui16 ;
float f32 ;
double f64 ;
char s(maxStrlen64) ;
char u(maxStrlen64) ;
// global attributes:
:Facility.PrincipleInvestigator = "Mark Abbott\n",
"Ph.D" ;
:Facility.DataCenter = "COAS Environmental Computer Facility" ;
:Facility.DrifterType = "MetOcean WOCE/OCM" ;
data:
b = 0 ;
i32 = 1 ;
ui32 = 0 ;
i16 = 0 ;
ui16 = 0 ;
f32 = 0 ;
f64 = 1000 ;
s = "This is a data test string (pass 0)." ;
u = "http://www.dods.org" ;
}