You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Numpy recently turned on a deprecation warning for indexing with lists containing None (arr[[None, 0]], numpy/numpy#9686). This seems to be biting netCDF4 when using the 'slice' command. The following code works fine.
/Users/bror/anaconda3/bin/ipython3w:1: FutureWarning: Using a non-tuple sequence for
multidimensional indexing is deprecated; use `arr[tuple(seq)]` instead of `arr[seq]`. In the future this will be interpreted as an array index, `arr[np.array(seq)]`, which will result either in an error or a
different result.
/Bror Jonsson
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Dear all,
Numpy recently turned on a deprecation warning for indexing with lists containing None (arr[[None, 0]], numpy/numpy#9686). This seems to be biting netCDF4 when using the 'slice' command. The following code works fine.
result:
But an analogous case with netCDF4
triggers the warning
/Bror Jonsson
The text was updated successfully, but these errors were encountered: