-
Notifications
You must be signed in to change notification settings - Fork 64
Open
Description
Great work. I found some issues in warp radar.ipynb:
- Cell 3. Replace
from rasterio.warp import reproject, RESAMPLING
with
from rasterio.warp import reproject
andfrom rasterio.enums import Resampling
- Cells 7 & 9 .Use
with rasterio.Env():
instead ofwith rasterio.drivers():
because the latter is now deprecated. - Cell 8. Replace
dst_shape = (height, width)
withdst_shape = (int(height), width)
to avoid a data type error innp.zeros
- Cell 9. Replace
resampling=RESAMPLING.nearest
withresampling=Resampling.nearest
Bests!
Metadata
Metadata
Assignees
Labels
No labels