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
ifgridisnotNone:
rgrid= (rgrid
.rio.reproject_match(grid,
nodata=fillvalue) # rio.reproject nodata is use to initlialize the destination array
.where(~grid.isnull())
)
Format 1
ifgridisnotNone:
rgrid= (
rgrid.rio.reproject_match(
grid, nodata=fillvalue
).where( # rio.reproject nodata is use to initlialize the destination array~grid.isnull()
)
)
Format 2
ifgridisnotNone:
rgrid=rgrid.rio.reproject_match(
grid, nodata=fillvalue
).where( # rio.reproject nodata is use to initlialize the destination array~grid.isnull()
)
Input
Format 1
Format 2
Sourced by #7445
The text was updated successfully, but these errors were encountered: