Skip to content

Releases: opendatacube/datacube-core

1.4.0

17 May 04:52
Compare
Choose a tag to compare
  • Adds more convenient year/date range search expressions (see #226)
  • Adds a simple replication utility (see #223)
  • Fixed issue reading products without embedded CRS info, such as bom_rainfall_grid (see #224)
  • Fixed issues with stacking and ncml creation for NetCDF files
  • Various documentation and bug fixes
  • Added CircleCI as a continuous build system, for previewing generated documenation on pull
  • Require xarray >= 0.9. Solves common problems caused by losing embedded flag_def and crs attributes.

1.3.2

20 Apr 07:00
Compare
Choose a tag to compare
  • Docs now refer to "Open Data Cube".
  • Docs describe how to use conda to install datacube.
  • Bug fixes for the stacking process.
  • Minor model changes:
    • Support for remote (non-file) locations from dataset objects: see #219
    • Consistency improvents to the dataset properties: see #217
  • Various other bug fixes and document updates.

1.3.0

28 Mar 00:02
Compare
Choose a tag to compare

This is the first release datacube-core, as part of the Open Data Cube community.

  • Updated the Postgres product views to include the whole dataset metadata
    document.

  • datacube system init now recreates the product views by default every
    time it is run, and now supports Postgres 9.6.

  • URI searches are now better supported from the command line: datacube dataset search uri = file:///some/uri/here

  • datacube user now supports a user description (via --description)
    when creating a user, and delete accepts multiple user arguments.

  • Platform-specific (Landsat) fields have been removed from the default eo
    metadata type in order to keep it minimal. Users & products can still add
    their own metadata types to use additional fields.

  • Dataset locations can now be archived, not just deleted.

This release now enforces the uri index changes to be applied: it will prompt
you to rerun init as an administrator to update your existing cubes:
datacube -v system init (this command can be run without affecting
read-only users, but will briefly pause writes)

1.2.0 Boring as Batman

15 Feb 03:07
Compare
Choose a tag to compare
  • Implemented improvements to dataset search and info cli outputs
  • Can now specify a range of years to process to ingest cli (e.g. 2000-2005)
  • Fixed metadata_type update cli not creating indexes (running system init will create missing ones)
  • Enable indexing of datacube generated NetCDF files. Making it much easier to pull
    selected data into a private datacube index.
    Use by running datacube dataset add selected_netcdf.nc.
  • Switch versioning scheme to increment the second digit instead of the third.

1.1.18 Mushroom Milkshake

15 Feb 03:08
Compare
Choose a tag to compare
Pre-release
  • Added sources-policy options to dataset add cli
  • Multiple dataset search improvements related to locations
  • Keep hours/minutes when grouping data by solar_day
  • CLI commands datacube dataset info and datacube dataset search now display more information and both support CSV or YAML output.
  • Other minor bugfixes/improvements (~130 commits since 1.1.17)

Code Changes:

  • datacube.model.CRS,BoundingBox,Coordinate,GeoBox have moved into datacube.utils.geometry

1.1.17 Happy Festivus Continues

12 Jan 01:55
Compare
Choose a tag to compare
  • Fixed several issues with the geometry utils
  • Added more operations to the geometry utils
  • Updated Code Recipes section to use geometry utils
  • Enabled Windows CI (python 3 only)

1.1.16 Happy Festivus

06 Jan 00:22
Compare
Choose a tag to compare
  • Added update command to datacube dataset cli
  • Added show command to datacube product cli
  • Added list and show commands to datacube metadata_type cli
  • Added 'storage unit' stacker application
  • Replaced model.GeoPolygon with utils.geometry library

1.1.15 Minion Party Hangover

02 Dec 03:46
Compare
Choose a tag to compare
  • Fixed a data loading issue when reading HDF4_EOS datasets.

1.1.14 Minion Party

30 Nov 04:54
Compare
Choose a tag to compare
  • Added support for buffering/padding of GridWorkflow tile searches
  • Improved the Query class to make filtering by a source or parent dataset easier. For example, this can be used to filter Datasets by Geometric Quality Assessment (GQA). Use source_filter when requesting data.
  • Additional data preparation and configuration scripts
  • Various fixes for single point values for lat, lon & time searches
  • Grouping by solar day now overlays scenes in a consistent, northern scene takes precedence manner. Previously it was non-deterministic which scene/tile would be put on top.

1.1.13 Black Goat

16 Nov 05:36
Compare
Choose a tag to compare
  • Added support for accessing data through http and s3 protocols
  • Added dataset search command for filtering datasets (lists id, product, location)
  • ingestion_bounds can again be specified in the ingester config
  • Can now do range searches on non-range fields (e.g. dc.load(orbit=(20, 30))
  • Merged several bug-fixes from CEOS-SEO branch
  • Added Polygon Drill recipe