netcdf-c/dap4_test/baseline/test_struct_nested3.nc.d4d
Dennis Heimbigner 65414eeaa4 Fix some protocol differences between netcdf-c and the Hyrax server.
re: Partly addresses issue https://github.com/Unidata/netcdf-c/issues/1712.

1. Turn on Hyrax Hack to accept Hyrax style attribute containers.
2. Support Url type as alias for String.
3. Accept the special attribute, "__DAP4_Checksum_CRC32",
   to control per-variable checksums.
4. Make _DAP4_xxx attributes be reserved and only accessible
   by name (ala _SuperBlock attribute).
5. Fix handling of checksums. There is a hack in the code
   that uses an extra flag in the chunk header to indicate
   that all variables have checksums. This violates the spec
   and will be removed once it is possible to regenerate the
   test cases.

Note that checksumming with the Hyrax test server has not
been tested. This, along with some other probable inconsistencies,
needs fixing when OPeNDAP and Unidata can agree on the proper
specification. Testing will be included.
2020-05-30 17:36:25 -06:00

19 lines
286 B
Plaintext

netcdf test_struct_nested3.nc {
types:
compound x_field3_field2_t {
int field1 ;
}; // x_field3_field2_t
compound x_field3_t {
x_field3_field2_t field2 ;
}; // x_field3_t
compound x_t {
x_field3_t field3 ;
}; // x_t
variables:
x_t x ;
data:
x = {{{17}}} ;
}