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.
17 lines
239 B
17 lines
239 B
2 years ago
|
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;
|
||
|
}
|