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.
21 lines
479 B
21 lines
479 B
2 years ago
|
netcdf scope_ancestor_subgroup {
|
||
|
types:
|
||
|
ubyte enum test_enum_type {OPTION1 = 0, OPTION2 = 1, OPTION3 = 2} ;
|
||
|
dimensions:
|
||
|
d1 = 1 ;
|
||
|
d2 = 1 ;
|
||
|
group: test_group {
|
||
|
variables:
|
||
|
test_enum_type test_variable(d1,d2);
|
||
|
test_enum_type test_variable:_FillValue = OPTION1 ;
|
||
|
group: sub_group {
|
||
|
types:
|
||
|
ubyte enum test_enum_type {OPTION1 = 0, OPTION2 = 1, OPTION3 = 2} ;
|
||
|
dimensions:
|
||
|
d1 = 1 ;
|
||
|
d2 = 1 ;
|
||
|
} // group sub_group
|
||
|
|
||
|
} // group test_group
|
||
|
}
|