mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
4614690d61
The code for mapping slices to chunks is wrong for some cases. Fix code and add additional chunking tests to cover edge cases.
18 lines
236 B
Plaintext
18 lines
236 B
Plaintext
netcdf tmp_skipw {
|
|
dimensions:
|
|
d0 = 6 ;
|
|
d1 = 6 ;
|
|
variables:
|
|
int v(d0, d1) ;
|
|
v:_FillValue = -1 ;
|
|
data:
|
|
|
|
v =
|
|
0, _, _, _, _, 1,
|
|
_, _, _, _, _, _,
|
|
_, _, _, _, _, _,
|
|
_, _, _, _, _, _,
|
|
_, _, _, _, _, _,
|
|
2, _, _, _, _, 3 ;
|
|
}
|