Closed
Description
MCVE Code Sample
xarray.open_rasterio(...)
Problem Description
Need to move the transform
to the left side.
Warning:
DeprecationWarning: Right multiplication will be prohibited in version 3.0
x, _ = (np.arange(nx) + 0.5, np.zeros(nx) + 0.5) * transform
Should be:
x, _ = transform * (np.arange(nx) + 0.5, np.zeros(nx) + 0.5)
Metadata
Metadata
Assignees
Labels
No labels