Releases: opendatacube/datacube-core
1.5.2
New Features
- Support for AWS S3 array storage
- Driver Manager support for NetCDF, S3, S3-file drivers.
Usability Improvements
- When
datacube dataset add
is unable to add a Dataset to the index, print
out the entire Dataset to make it easier to debug the problem. - Give
datacube system check
prettier and more readable output. - Make
celery
andredis
optional when installing. - Significantly reduced disk space usage for integration tests
Dataset
objects now have anis_active
field to mirroris_archived
.- Added
index.datasets.get_archived_location_times()
to see when each
location was archived.
Bug Fixes
- Fix bug when reading data in native projection, but outside
source
area. Often hit when runningdatacube-stats
- Fix error loading and fusing data using
dask
. (Fixes #276) - When reading data, implement
skip_broken_datasets
for thedask
case too - Fix bug #261. Unable to load Australian Rainfall Grid Data. This was as a
result of the CRS/Transformation override functionality being broken when
using the latestrasterio
version1.0a9
1.4.1
-
Support for reading multiband HDF datasets, such as MODIS collection 6
-
Workaround for rasterio issue when reprojecting stacked data
-
Bug fixes for command line arg handling
1.4.0
- 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
- 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:
- Various other bug fixes and document updates.
1.3.0
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
- Implemented improvements to
dataset search
andinfo
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 (runningsystem 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 runningdatacube dataset add selected_netcdf.nc
. - Switch versioning scheme to increment the second digit instead of the third.
1.1.18 Mushroom Milkshake
- 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
anddatacube 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 intodatacube.utils.geometry
1.1.17 Happy Festivus Continues
- 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
- Added
update
command todatacube dataset
cli - Added
show
command todatacube product
cli - Added
list
andshow
commands todatacube metadata_type
cli - Added 'storage unit' stacker application
- Replaced
model.GeoPolygon
withutils.geometry
library
1.1.15 Minion Party Hangover
- Fixed a data loading issue when reading HDF4_EOS datasets.