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
These two libraries allow to daskify a wider range of functions and drop the datashader dependency needed for xarray-spatial.
In geoutils / xdem, I found:
✔️ daskified reprojection + collocate (with Match-reference: a reference raster can be passed to match resolution, bounds and CRS during reprojection. !)
There is still numerous functions that needs to be daskified, without clear implementation in already used libraries.
rasters.sieve
: No clear implementation found anywhere. Maybe directly callxr.apply_ufunc
like here?rasters.merge_gtiff
: No clear implementation found anywhere. Existing implementation in rioxarray but rasterio-based and no sign of Dask in it.rasters.unpackbits
: No clear implementation found anywhere. Maybe directly callxr.apply_ufunc
becausenp.unpackbits
don't exist in dask?rasters.read_bit_array
: Should be straightforward oncerasters.unpackbits
is daskifiedrasters.vectorize
: use Geoutilsrasters.hillshade
andrasters.slope
: Usexarray-spatial
(orxdem
, but seems less mature)?rasters.collocate
: Usexarray-regrid
in case rewriting ref coordinates in place isn't sufficient and reprojecting is too much?The text was updated successfully, but these errors were encountered: