netcdf-c/nczarr_test/ref_oldkeys.cdl
Dennis Heimbigner 06d2fe5b13 # Addendum
As suggested by Ward, I ensured that this PR supports
read backward compatibility with old key format.
This addition also adds a test case for this.

## Misc. Other Changes
* Remove some unused code
* Cleanup json error handling
* Fix some more unsigned/signed conversions warning
2024-06-25 17:13:02 -06:00

21 lines
330 B
Plaintext

netcdf ref_oldkeys {
dimensions:
d0 = 2 ;
d1 = 4 ;
d2 = 6 ;
variables:
int v(d0, d1, d2) ;
v:_FillValue = -1 ;
data:
v =
0, 1, 2, 3, 4, 5,
6, 7, 8, 9, 10, 11,
12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23,
24, 25, 26, 27, 28, 29,
30, 31, 32, 33, 34, 35,
36, 37, 38, 39, 40, 41,
42, 43, 44, 45, 46, 47 ;
}