Something changed upstream in NumPy (probably) to make np.ma.squeeze(xarray_datarray) fail with an AttributeError looking for the .view attribute. rasterio.plot is calling np.ma.squeeze.
I think the intent is for np.ma.squeeze to return a masked array, so this is probably a deliberate change by NumPy.
Something changed upstream in NumPy (probably) to make
np.ma.squeeze(xarray_datarray)
fail with anAttributeError
looking for the.view
attribute.rasterio.plot
is callingnp.ma.squeeze
.I think the intent is for
np.ma.squeeze
to return a masked array, so this is probably a deliberate change by NumPy.