mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-03-07 17:08:02 +08:00
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
21 lines
330 B
Plaintext
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 ;
|
|
}
|