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.
- Add support for comparison operators (
<
,>
,<=
and>=
) in callback process building - Added
Connection.describe_process()
to retrieve and show a single process
- Include openEO API error id automatically in exception message to simplify user support and post-mortem analysis.
- Removed deprecated 'zonal_statistics' method from the 1.x version of the API.
- Add experimental support for
chunk_polygon
process (Open-EO/openeo-processes#287) - Add support for
spatial_extent
,temporal_extent
andbands
toConnection.load_result()
- Setting the environment variable
OPENEO_BASEMAP_URL
allows to set a new templated URL to a XYZ basemap for the Vue Components library,OPENEO_BASEMAP_ATTRIBUTION
allows to set the attribution for the basemap (#260) - Initial support for experimental "federation:missing" flag on partial openEO Platform user job listings (Open-EO/openeo-api#419)
- Best effort detection of mistakenly using Python builtin
sum
orall
functions in callbacks (Forum #113) - Automatically print batch job logs when job doesn't finish successfully (using
execute_batch/run_synchronous/start_and_wait
).
- Add
options
argument toDataCube.atmospheric_correction
(Open-EO/openeo-python-driver#91) - Add
atmospheric_correction_options
andcloud_detection_options
arguments toDataCube.ard_surface_reflectance
(Open-EO/openeo-python-driver#91) - UDP storing: add support for "returns", "categories", "examples" and "links" properties (#242)
- Add
openeo.extra.spectral_indices
: experimental API to easily compute spectral indices (vegetation, water, urban, ...) on aDataCube
, using the index definitions from Awesome Spectral Indices
- Batch job status poll loop: ignore (temporary) "service unavailable" errors (Open-EO/openeo-python-driver#96)
- Batch job status poll loop: fail when there are too many soft errors (temporary connection/availability issues)
- Fix
DataCube.ard_surface_reflectance()
to use processard_surface_reflectance
instead ofatmospheric_correction
- Add command line tool
openeo-auth token-clear
to remove OIDC refresh token cache - Add support for OIDC device authorization grant without PKCE nor client secret, (#225, openeo-api#410)
- Add
DataCube.dimension_labels()
(EP-4008) - Add
Connection.load_result()
(EP-4008) - Add proper support for child callbacks in
fit_curve
andpredict_curve
(#229) ProcessBuilder
: Add support forarray_element(data, n)
throughdata[n]
syntax (#228)ProcessBuilder
: Add support foreq
andneq
through==
and!=
operators (EP-4011)- Add
DataCube.validate()
for process graph validation (EP-4012 related) - Add
Connection.as_curl()
for generating curl command to evaluate a process graph orDataCube
from the command line - Add support in
DataCube.download()
to guess output format from extension of a given filename
- Improve default handling of
crs
(andbase
/height
) infilter_bbox
: avoid explicitly sendingnull
unnecessarily (#233). - Update documentation/examples/tests: EPSG CRS in
filter_bbox
should be integer code, not string (#233). - Raise
ProcessGraphVisitException
fromProcessGraphVisitor.resolve_from_node()
(instead of genericValueError
) DataCube.linear_scale_range
is now a shortcut forDataCube.apply(lambda x:x.x.linear_scale_range( input_min, input_max, output_min, output_max))
.
Instead of creating an invalid process graph that tries to invoke linear_scale_range on a datacube directly.- Nicer error message when back-end does not support basic auth (#247)
- Remove unused and outdated (0.4-style)
File
/RESTFile
classes (#115) - Deprecate usage of
DataCube.graph
property (#209)
Minor release to address version packaging issue.
- Support nested callbacks inside array arguments, for instance in
array_modify
,array_create
- Support
array_concat
- add
ProcessGraphUnflattener
andPGNodeGraphUnflattener
to unflatten a flat dict representation of a process graph to aPGNode
graph (EP-3609) - Add
Connection.datacube_from_flat_graph
andConnection.datacube_from_json
to construct aDataCube
from flat process graph representation (e.g. JSON file or JSON URL) (EP-3609) - Add documentation about UDP unflattening and sharing (EP-3609)
- Add
fit_curve
andpredict_curve
, two methods used in change detection
- Update
processes.py
based on 1.1.0 release op openeo-processes project processes.py
: include all processes from "proposals" folder of openeo-processes project- Jupyter integration: Visual rendering for process graphs shown instead of a plain JSON representation.
- Migrate from Travis CI to GitHub Actions for documentation building and unit tests (#178, EP-3645)
- Removed unit test runs for Python 3.5 (#210)
- Allow, but raise warning when specifying a CRS for the geometry passed to
aggregate_spatial
andmask_polygon
, which is non-standard/experimental feature, only supported by specific back-ends (#204) - Add
optional
argument toParameter
and fix re-encoding parameters with default value. (EP-3846) - Add support to test strict equality with
ComparableVersion
- Jupyter integration: add rich HTML rendering for more backend metadata (Job, Job Estimate, Logs, Services, User-Defined Processes)
- Add support for filter_spatial
- Add support for aggregate_temporal_period
- Added class
Service
for secondary web-services - Added a method
service
toConnection
- Add
Rfc3339.parse_date
andRfc3339.parse_date_or_datetime
- Disallow redirects on POST/DELETE/... requests and require status code 200 on
POST /result
requests. This improves error information wherePOST /result
would involve a redirect. (EP-3889) - Class
JobLogEntry
got replaced with a more complete and re-usableLogEntry
dict - The following methods return a
Service
class instead of a dict:tiled_viewing_service
inImageCollection
,ImageCollectionClient
andDataCube
,create_service
inConnection
- The method
remove_service
inConnection
has been deprecated in favor ofdelete_service
in theService
class
- Add dependency on
xarray
package (#159, #190, EP-3578) - Add support for default OIDC clients advertised by backend (#192, Open-EO/openeo-api#366)
- Add support for default OIDC provider (based on provider order advertised by backend) (Open-EO/openeo-api#373)
- Eliminate development/optional dependency on
openeo_udf
project (#159, #190, EP-3578). Now the openEO client library itself contains the necessary classes and implementation to run UDF code locally.
Connection
: don't send default auth headers to non-backend domains (#201)
- Improve OpenID Connect usability on Windows: don't raise exception on file permissions
that can not be changed (by
os.chmod
on Windows) (#198)
- Add initial/experimental support for OIDC device code flow with PKCE (alternative for client secret) (#191 / EP-3700)
- When creating a connection: use "https://" by default when no protocol is specified
DataCube.mask_polygon
: supportParameter
argument formask
- Add initial/experimental support for default OIDC client (#192, Open-EO/openeo-api#366)
- Add
Connection.authenticate_oidc
for user-friendlier OIDC authentication: first try refresh token and fall back on device code flow - Add experimental support for
array_modify
process (Open-EO/openeo-processes#202)
- Remove old/deprecated
Connection.authenticate_OIDC()
- Add namespace support to
DataCube.process
,PGNode
,ProcessGraphVisitor
(minor API breaking change) and related. Allows building process graphs with processes from non-"backend" namespaces (#182) collection_items
to request collection items through a STAC APIpaginate
as a basic method to support link-based pagination- Add namespace support to
Connection.datacube_from_process
- Add basic support for band name aliases in
metadata.Band
for band index lookup (EP-3670)
OpenEoApiError
moved fromopeneo.rest.connection
toopeneo.rest
- Added HTML representation for
list_jobs
,list_services
,list_files
and for job results - Improve refresh token handling in OIDC logic: avoid requesting refresh token (which can fail if OIDC client is not set up for that) when not necessary (EP-3700)
RESTJob.start_and_wait
: add status line when sending "start" request, and drop microsecond resolution from status lines
- Updated Vue Components library (solves issue with loading from slower back-ends where no result was shown)
- Add "reflected" operator support to
ProcessBuilder
- Add
RESTJob.get_results()
,JobResults
andResultAsset
for more fine-grained batch job result handling. (EP-3739) - Add documentation on batch job result (asset) handling and downloading
- Mark
Connection.imagecollection
more clearly as deprecated/legacy alias ofConnection.load_collection
- Deprecated
job_results()
andjob_logs()
onConnection
object, it's better to work throughRESTJob
object. - Update
DataCube.sar_backscatter
to the latest process spec: addcoefficient
argument and removeorthorectify
,rtc
. (openeo-processes#210)
- Remove outdated batch job result download logic left-overs
- Remove (outdated) abstract base class
openeo.job.Job
: did not add value, only caused maintenance overhead. (#115)
- Make
DataCube.filter_bbox()
easier to use: allow passing a bbox tuple, list, dict or even shapely geometry directly as first positional argument or asbbox
keyword argument. Handling of the legacy non-standard west-east-north-south positional argument order is preserved for now (#136) - Add "band math" methods
DataCube.ln()
,DataCube.logarithm(base)
,DataCube.log10()
andDataCube.log2()
- Improved support for creating and handling parameters when defining user-defined processes (EP-3698)
- Initial Jupyter integration: add rich HTML rendering of backend metadata (collections, file formats, UDF runtimes, ...) (#170)
- add
resolution_merge
process (experimental) (EP-3687, openeo-processes#221) - add
sar_backscatter
process (experimental) (EP-3612, openeo-processes#210)
- Fixed 'Content-Encoding' handling in
Connection.download
: client did not automatically decompress/result
responses when necessary (#175)
- Add
DataCube.aggregate_spatial()
- Get/create default
RefreshTokenStore
lazily inConnection
- Various documentation tweaks
- Add support for
title
/description
/plan
/budget
inDataCube.send_job
(#157 / #158) - Add
DataCube.to_json()
to easily get JSON representation of a DataCube - Allow to subclass
CollectionMetadata
and preserve original type when "cloning"
- Changed
execute_batch
to support downloading multiple files (within EP-3359, support profiling) - Don't send None-valued
title
/description
/plan
/budget
fields fromDataCube.send_job
(#157 / #158)
- Remove duplicate and broken
Connection.list_processgraphs
- Various documentation fixes and tweaks
- Avoid
merge_cubes
warning when using non-band-mathDataCube
operators
- Add
DataCube.aggregate_temporal
- Add initial support to download profiling information
- Deprecated legacy functions/methods are better documented as such and link to a recommended alternative (EP-3617).
- Get/create default
AuthConfig
in Connection lazily (allows client to run in environments without existing (default) config folder)
- Deprecate
zonal_statistics
in favor ofaggregate_spatial
- Remove support for old, non-standard
stretch_colors
process (Uselinear_scale_range
instead).
- Also handle
dict
arguments indereference_from_node_arguments
(EP-3509) - Add support for less/greater than and equal operators
- Raise warning when user defines a UDP with same id as a pre-defined one (EP-3544, #147)
- Add
rename_labels
support in metadata (EP-3585) - Improve "callback" handling (sub-process graphs): add predefined callbacks for all official processes and functionality to assemble these (EP-3555, #153)
- Moved datacube write/save/plot utilities from udf to client (EP-3456)
- Add documentation on OpenID Connect authentication (EP-3485)
- Fix
kwargs
handling inTimingLogger
decorator
- Add
openeo-auth
command line tool to manage OpenID Connect (and basic auth) related configs (EP-3377/EP-3493) - Support for using config files for OpenID Connect and basic auth based authentication, instead of hardcoding credentials (EP-3377/EP-3493)
- Fix target_band handling in
DataCube.ndvi
(EP-3496)