Skip to content

Latest commit

 

History

History
93 lines (63 loc) · 3.23 KB

CHANGELOG.md

File metadata and controls

93 lines (63 loc) · 3.23 KB

Changelog

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.

[v0.3.5] - 2023-01-18

  • Fix data loading with Dask for collections where items might have "missing" assets

[v0.3.4] - 2022-12-08

  • Implement fail_on_error=False option for skipping over errors while loading data
  • Maintenance of github actions

[v0.3.3] - 2022-10-20

  • Fixes to support xarray >= 2022.10.0

[v0.3.2] - 2022-09-09

  • 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

[v0.3.1] - 2022-06-28

  • Use asset key as a canonical name, fixes landsat collection parsing

[v0.3.0] - 2022-06-06

  • No longer depend on datacube library
    • Significantly smaller set of compulsory dependencies, easier to install/deploy
  • Using odc-geo library instead of datacube for GeoBox and Geometry 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

[v0.2.4] - 2022-01-19

Changed

  • Removed odc.index. module

[v0.2.3] - 2022-01-05

Added

  • 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

Changed

  • 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

Fixed

  • Handling of STAC Items with only partial proj data
  • Typos in documentation

[v0.2.2] - 2021-10-25

Added

  • Binder launcher to README
  • Another USGS STAC example for Landsat SR
  • Documentation

Changed

  • Cleaned up test fixtures
  • Relaxed is_raster_data check
  • Force data band decision for explicitly configured bands
  • Moved constansts in to global scope

[v0.2.1] - 2021-10-18

Initial release as a standalone project. Previously, this project was part of https://github.com/opendatacube/odc-tools.