We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13b6c34 commit d775396Copy full SHA for d775396
lib/iris/coords.py
@@ -495,7 +495,8 @@ def is_full_slice(s):
495
# Bounds will generally have an extra dimension compared
496
# to points, so add an Ellipsis at the end, unless there
497
# is already on, as numpy does not support double Ellipsis.
498
- if keys[-1] == Ellipsis:
+ if (not isinstance(keys[-1], np.ndarray)
499
+ and keys[-1] == Ellipsis):
500
bounds = bounds[keys]
501
else:
502
bounds = bounds[keys + (Ellipsis, )]
0 commit comments