Releases: UM-RMRS/raster_tools
Releases · UM-RMRS/raster_tools
v0.8.2
- Fix issue where target_values were ignored in proximity analysis. (c12edd1)
v0.8.1
- Fix issue where clipping multi-band rasters would fail (e846cfd)
v0.8.0
- Raster.to_points now returns a dataframe with a unique index for each row.
v0.7.0
- Pin dask to
<=2024.2
until dask-geopandas can update to use the new dask-expr API (1f8a568)
- Fix documentation for rasterization (4bf8508)
- Fix issue in line_stats where dask would auto-rechunk causing actual chunks to differ from expected (23ababb)
- Speed up and simplify
Raster.get_chunk_rasters
(6beb9f1)
v0.6.1
- Fix backward compatibility issue with Dask (3781e23)
v0.6.0
- Add experimental
explore
method to raster class.
- Add
Raster.set_null
to allow modification of raster masks.
- Refactor
Raster.burn_mask
to be less invasive and destructive.
- Allow
reclassify
and remap_range
to map values to null.
v0.5.0
- Begin integrating odc-geo
- Add
Raster.geobox
property (53dc159)
- Add
reproject
function and Raster.reproject
method. (9c9d74e)
- Fix FutureWarning (959d768)
v0.4.1
- Silence future warning from
pandas.stack
adc53fe
v0.4.0
- Refactored
reclassify()
to handle float rasters and float values in the mapping.
- Added
Raster.load()
to eventually replace Raster.eval()
.
- Added
Raster.to_numpy()
to mirror xarray and pandas objects.