We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d75cd5 commit 8743604Copy full SHA for 8743604
1 file changed
src/netCDF4/utils.py
@@ -428,6 +428,7 @@ def _StartCountStride(elem, shape, dimensions=None, grp=None, datashape=None,\
428
elif np.iterable(e) and np.array(e).dtype.kind in 'i': # Sequence of integers
429
print(e, sdim)
430
start[...,i] = np.apply_along_axis(lambda x: e*x, i, np.ones(sdim[:-1]))
431
+ print(start[...,i]
432
indices[...,i] = np.apply_along_axis(lambda x: np.arange(sdim[i])*x, i, np.ones(sdim[:-1], int))
433
434
count[...,i] = 1
0 commit comments