mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-21 08:39:46 +08:00
d1d2808919
This change-set modifies PR https://github.com/Unidata/netcdf-c/pull/2555 to add the changes listed below. Most of these changes are required by changes to the Java remotetest.unidata.ucar.edu server. ## DAP4 Related Changes * Add tests *dap4_test/test_constraints.sh* and *dap4_test/test_hyrax.sh*. * Provide explicit list of remotetest files to test. * Cleanup local checksum computing and verification. * Define a temporary Hyrax hack flag to deal with the way Hyrax handles checksums and add "#hyrax" fragment flag for it. * Add a hack to get past an LGTM problem with using "http:". * Improve debug support. ## Other Changes * Cleanup the recipe in *docs/nczarr.md* for building *aws-sdk-cpp* library.
19 lines
531 B
Plaintext
19 lines
531 B
Plaintext
netcdf test_enum_array {
|
|
types:
|
|
byte enum cloud_class_t {Clear = 0, Cumulonimbus = 1, Stratus = 2,
|
|
Stratocumulus = 3, Cumulus = 4, Altostratus = 5, Nimbostratus = 6,
|
|
Altocumulus = 7, Cirrostratus = 8, Cirrocumulus = 9, Cirrus = 10,
|
|
Missing = 127} ;
|
|
dimensions:
|
|
_Anonymous2 = 2 ;
|
|
variables:
|
|
cloud_class_t primary_cloud(_Anonymous2) ;
|
|
cloud_class_t primary_cloud:_FillValue = Missing ;
|
|
|
|
// global attributes:
|
|
string :_dap4.ce = "/primary_cloud[1:2:4]" ;
|
|
data:
|
|
|
|
primary_cloud = Stratus, Cumulonimbus ;
|
|
}
|