netcdf-c/dap4_test/baseline/test_opaque_array.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

15 lines
288 B
Plaintext

netcdf test_opaque_array.nc {
types:
opaque(16) opaque16_t ;
dimensions:
d2 = 2 ;
variables:
opaque16_t vo2(d2, d2) ;
data:
vo2 =
0X0123456789ABCDEF0000000000000000, 0XABCDEF00000000000000000000000000,
0XFEDCBA98765432100000000000000000, 0XFEDCBA99999999990000000000000000 ;
}