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.
|
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=e2.undefined;
|
|
test3=e1.fail;
|
|
}
|
|
|