All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Fix data loading with Dask for collections where items might have "missing" assets
- Implement
fail_on_error=False
option for skipping over errors while loading data - Maintenance of github actions
- Fixes to support
xarray >= 2022.10.0
- Multi band support when parsing STAC items
- Remove ambiguous alias warnings and errors, instead pick "best" band for a given common name based on a simple heuristic (favour single band assets over multi-band, use alphabet order when band count is the same).
- Accept
<asset name>.<band index: 1..>
syntax for specifying bands - Support files with GCP-based geo-reference
- Robust handling of transforms that "break" item geometry, better handle cases when item geometry doesn't project cleanly into the destination projection
- Fix error in GDAL environment configuration for non-Dask case
- Use asset key as a canonical name, fixes landsat collection parsing
- No longer depend on
datacube
library- Significantly smaller set of compulsory dependencies, easier to install/deploy
- Using
odc-geo
library instead ofdatacube
forGeoBox
andGeometry
classes - Can load data into rotated pixel planes (Example)
- Arbitrary grouping of STAC items into pixel planes with user supplied grouping methods or group by property name
- Better handling of credentials and other GDAL state in distributed context
- credentials and GDAL environment configuration were part of the global state previously, now global state is removed, so you can access collections with different permissions from the same Dask cluster (for example mixing public and private access).
- Parallelized data loading even when not using Dask
- Progress reporting for non-Dask load with
tqdm
- Removed
odc.index.
module
- This CHANGELOG
requirements-dev.txt
- Documentation
- Upload built conda environment as an artifact
- Notebook rendering to Github actions, including hash-based artifact checks
- Initial benchmarking tooling, still in progress
- Moved publishing steps into separate workflows
- Deprecated imports from
odc.index.*
- Removed
.units
attribute from.time
axis for better inter-op with.to_zarr
,.to_netcdf
- Handling of STAC Items with only partial
proj
data - Typos in documentation
- Binder launcher to README
- Another USGS STAC example for Landsat SR
- Documentation
- Cleaned up test fixtures
- Relaxed
is_raster_data
check - Force data band decision for explicitly configured bands
- Moved constansts in to global scope
Initial release as a standalone project. Previously, this project was part of https://github.com/opendatacube/odc-tools.