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
Update README benchmarks and enable all backend write support
README:
- Updated feature matrix: write_geotiff now shows Dask ✅ and
CuPy 🔄 (fallback). Added write_geotiff_gpu and read_geotiff_dask
rows. Updated VRT to show Dask support.
- Added comprehensive benchmark tables for read (real-world + synthetic)
and write (CPU vs GPU vs rioxarray) across all sizes and codecs.
- 100% consistency verified across all tested files.
Backend support for write_geotiff:
- NumPy: direct write (existing)
- Dask DataArray: .compute() then write (existing, now documented)
- CuPy raw array: .get() to numpy then write (new)
- CuPy DataArray: .data.get() then write (new)
- Dask+CuPy: .compute().get() then write (new)
- Python list: np.asarray() then write (existing)
For GPU-native compression (no CPU transfer), use write_geotiff_gpu.
0 commit comments