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.
 
 
 
 
 
 

16 lines
239 B

netcdf ref_tst_econst {
types:
byte enum e1 {pass = 0, fail = 1, undefined = 2} ;
byte enum e2 {defined = 0, undefined = 1} ;
variables:
e1 test1 ;
e2 test2 ;
e1 test3 ;
data:
test1 = pass ;
test2 = undefined;
test3 = fail;
}