From 2f8e8e96c7efe78e70f7c0f4c55748b650adb42e Mon Sep 17 00:00:00 2001 From: 16EAGLE Date: Mon, 13 Sep 2021 10:58:28 +0200 Subject: [PATCH] added NEWS --- NEWS.md | 40 ++++++++++++++++++++++++++++++++++++++++ README.md | 1 + 2 files changed, 41 insertions(+) create mode 100644 NEWS.md diff --git a/NEWS.md b/NEWS.md new file mode 100644 index 0000000..04434ef --- /dev/null +++ b/NEWS.md @@ -0,0 +1,40 @@ +# `odcr` changelog + +## 0.0.2 (in development) + +This release implements additional `xarray` features_ + +**Features:** + +- `xarray` native S3 methods for assigning/replacing variables (see `?odcr::Extract`) + +**Bug fixes:** + +- The `xarray` attribute "unit" and the `xarray` name of the first object used in an arithmetic operation are not copied to the resulting `xarray` object anymore but stripped instead. + + +*** + +## 0.0.1 (pre-release) + +This release implements a basic API for interacting with `datacube` and `xarray`. + +**Features:** + +- basic database connection (see `?odcr::database`) +- `datacube` core `Datacube` class methods (see `?odcr::datacube`) +- `datacube` core data discovery methods (see `?odcr::datacube` +- `datacube` core data loading methods (see `?odcr::datacube` +- `xarray` `xarray.core.dataarray.DataArray` class and formal S3 definition +- `xarray` `xarray.core.dataset.Dataset` class and formal S3 definition +- `xarray` native S3 methods for retrieving dimensions (see `?odcr::dim`) +- `xarray` native S3 methods for indexing by arbitrary number of dimensions (see `?odcr::Extract`) +- `xarray` native S3 methods for indexing by variable (see `?odcr::Extract`) +- `xarray` native S3 methods for indexing by time strings (see `?odcr::Extract`) +- `xarray` native S3 methods for arithmetic operators (see `?odcr::Arithmetic`) +- `xarray` native S3 methods for coercing to native spatial classes `raster*` and `stars` (see `?odcr::as`) +- `xarray` native S3 methods for plotting (see `?odcr::plot`) +- configuration (see `?odcr::config`) + + + diff --git a/README.md b/README.md index da95bbc..a301e4c 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ - [x] `xarray` native S3 methods for indexing by arbitrary number of dimensions (see `?odcr::Extract`) - [x] `xarray` native S3 methods for indexing by variable (see `?odcr::Extract`) - [x] `xarray` native S3 methods for indexing by time strings (see `?odcr::Extract`) +- [x] `xarray` native S3 methods for assigning/replacing variables (see `?odcr::Extract`) - [x] `xarray` native S3 methods for arithmetic operators (see `?odcr::Arithmetic`) - [x] `xarray` native S3 methods for coercing to native spatial classes `raster*` and `stars` (see `?odcr::as`) - [x] `xarray` native S3 methods for plotting (see `?odcr::plot`)