Skip to content

Latest commit

 

History

History
231 lines (200 loc) · 16.5 KB

CHANGELOG.md

File metadata and controls

231 lines (200 loc) · 16.5 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.

Unreleased / Draft

1.1.0 - 2021-06-29

Added

  • New processes in proposal state
    • array_append
    • array_concat
    • array_create
    • array_create_labeled
    • array_find_label
    • array_interpolate_linear #173
    • array_modify
    • date_shift
    • is_infinite
    • nan
    • reduce_spatial
  • Added return value details (property returns) for the schemas with the subtype process-graph. API#350
  • apply_neighborhood: Clarify behavior for data cubes returned by the child processes and for that add the exception DataCubePropertiesImmutable.
  • Added a guide for implementors that describes numerours implementation details for processes that could not be covered in the specifications itself, for example a recommended implementation for the if process. #246

Changed

  • Added proposals folder for experimental processes. Experimental processes are not covered by the CHANGELOG and MAY include breaking changes! #196, #207, PSC#8
    • Moved the experimental process run_udf_externally to the proposals.
    • Moved the rarely used and implemented processes cummax, cummin, cumproduct, cumsum, debug, filter_labels, load_result, load_uploaded_files, resample_cube_temporal to the proposals.
  • Exception messages have been aligned always use ` instead of '. Tooling could render it with CommonMark.
  • load_collection and mask_polygon: Also support multi polygons instead of just polygons. #237
  • run_udf and run_udf_externally: Specify specific (extensible) protocols for UDF URIs.
  • resample_cube_spatial and resample_spatial: Aligned with GDAL and added rms and sum options to methods. Also added better descriptions.
  • resample_cube_temporal: Process has been simplified and only offers the nearest neighbor method now. The process parameter has been removed, the dimension parameter was made less restrictive, the parameter valid_within was added. #194

Deprecated

  • GeometryCollections are discouraged in all relevant processes.

Removed

  • Removed the experimental processes aggregate_spatial_binary and reduce_dimension_binary. #258

Fixed

  • Clarify that the user workspace is server-side. #225
  • Clarify that the condition parameter for array_filter works also on indices and labels.
  • Clarify contradicting statements in filter_temporal for the default value of the dimension parameter. By default all temporal dimensions are affected by the process. #203
  • Clarify how the parameters passed to the overlap resolver correspond to the data cubes. #184
  • Improve and clarify specifications for is_nan, is_nodata, is_valid. #189
  • Improve and clarify specifications for all and any. #189
  • array_element: Clarify that ArrayNotLabeled exception is thrown when parameter label is specified and the given array is not labeled.
  • array_apply, array_element, array_filter: Added the minimum: 0 constraint to all schemas describing zero-based indices (parameter index).
  • array_labels: Clarified the accepted data type for array elements passed to the parameter data.
  • merge_cubes: Clarified the dimension label order after the merge. #212
  • merge_cubes: Clarified the fourth example. #266
  • Fixed typos, grammar issues and other spelling-related issues in many of the processes.
  • Fixed the examples array_contains_nodata and array_find_nodata.
  • Fixed links to openEO glossary and added links to data cube introduction. #216
  • Fixed description of apply_dimension with regards to reference systems. Made description easier to understand, too. #234
  • Clarified disallowed characters in subtype file-path.
  • Clarified that UDF source code must contain a newline/line-break (affects run_udf).
  • aggregate_spatial, aggregate_spatial_binary: Clarified that Features, Geometries and GeometryCollections are a single entity in computations. Only FeatureCollections are multiple entities. #252
  • aggregate_spatial: Clarified that the values have no predefined order and reducers such as first and last return unpredictable results. #260
  • load_collection, parameter spatial_extent: Clarified that all pixels that are inside the bounding box of the given polygons but do not intersect with any polygon have to be set to no-data (null). #256
  • load_collection: Clarified that the parameters are recommended to be used in favor of filter_* processes.
  • aggregate_temporal and aggregate_temporal_period: Clarified that reducers are also executed for intervals/periods with no data. #263
  • dimension_labels: Clarified that the process fails with a DimensionNotAvailable exception, if a dimension with the specified name does not exist.

1.0.0 - 2020-07-31

Added

  • subtype-schemas.json: A list of predefined subtypes is available as JSON Schema; Moved over from openeo-api.
  • Processes:
    • aggregate_temporal_period
    • anomaly
    • apply_neighborhood
    • climatological_normal
    • constant
  • Process graphs added to:
    • mean
    • median
  • apply_kernel: Added parameters border and replace_invalid #170
  • Folder with examples (examples/). #136

Changed

  • any and all: Renamed parameter values to data. #147
  • load_collection: Parameter properties has subtype metdata-filter.
  • Examples adapted to latest API version for aggregate_temporal, array_contains, array_find, filter_labels, load_collection and rename_labels. #136, API#285
  • Some processes were assigned to different categories.

Removed

  • Process graph examples from arccos, arcsin, arctan, arsinh, artanh, e, ln and pi. API#285

Fixed

  • apply_kernel:
    • Clarify orientation of the 2D kernel array- #165
    • Clarify no-data handling. #170
  • load_collection: Removed outdated require property from value callback parameter in process parameter properties.
  • filter_bbox, load_collection, resample_spatial: Fixed invalid EPSG code examples.
  • aggregate_temporal: Fixed outdated message for exception TooManyDimensions.
  • clip: Fixed examples.
  • linear_scale_range: Clarify that the process implicitly clips the values. #159
  • mean: Clarify behavior for arrays with null-values only.
  • mod: Clarified behavior. #168
  • resample_*: Clarified behavior.
  • first, last, max, mean, median, min, sd, variance: Clarify behavior for arrays with null-values only.
  • Clarified (and fixed if necessary) for all processes in the "cubes" category the descriptions for the returned data cube. #149

1.0.0-rc.1 - 2020-01-31

Added

  • Processes:
    • add
    • aggregate_spatial
    • aggregate_spatial_binary
    • all
    • any
    • array_apply
    • array_contains
    • array_filter
    • array_find
    • array_labels
    • dimension_labels
    • drop_dimension
    • filter_labels
    • filter_spatial
    • load_uploaded_files
    • mask_polygon
    • reduce_dimension
    • reduce_dimension_binary
    • rename_labels
  • Support for labeled arrays. API#245
  • Process graphs for processes that can be implemented using other pre-defined processes. #137
  • context parameters to all processes which support passing process graphs (callbacks) as parameters. #25
  • Added further examples.

Changed

  • The JSON Schema keyword format has been replaced with the custom keyword subtype.
  • Schema format/subtype callback has been renamed to process-graph.
  • Default values are now specified on the parameter-level, not in the JSON schemas.
  • Parameters are now required by default.
  • Parameters are defined as array. parameter_order is therefore removed and the name is part of the parameter object. API#239
  • Callback parameters have a new, more advanced schema, allowing to define more aspects of the callback parameters. API#239
  • Processes supporting multiple data types in parameters or return values with anyOf are now listing the data types directly as array. anyOf is discouraged.
  • Comparison processes eq, gt, gte, lt, lte, neq and between accept all data types as input for the operands.
  • add_dimension: Parameter value renamed to label.
  • aggregate_polygon, aggregate_temporal, apply_dimension, array_element and resample_cube_temporal: Support labeled arrays. API#245
  • aggregate_polygon: The data cube implicitly gets restricted to the bounds of the polygons as if filter_polygon would have been used beforehand. #101
  • aggregate_temporal: Parameter labels is optional. #19
  • apply_dimension: Replaced with a completely new definition. #73
  • apply_kernel: Only supported 2D kernels on the horizontal spatial dimensions. #69
  • clip: Works on a single value instead on arrays (replaced parameter data with x). #75
  • count: Renamed parameter expression to condition.
  • debug: Replaced with a completely new definition. #82, API#100, API#214
  • filter_bands: Merged parameters bands and common_names. #77
  • if:
    • Doesn't pass through null, but instead null leads to rejecting the condition.
    • Parameter expression renamed to value.
    • Parameter accept is required.
    • Parameter reject defaults to null.
  • load_collection:
    • Parameter bands accepts common band names. #77
    • Parameter properties: Callback parameter value renamed to x.
  • mask: Clarifies behavior for missing dimensions in the mask. #55
  • merge_cubes works with binary reduction operators instead of list-based reducers. #94
  • ndvi and normalized_difference: Rewrite of the processes with a completely new behavior. #60
  • not: Parameter expression renamed to x.
  • resample_spatial: Default value of parameter align changed from lower-left to upper-left. #61
  • The following operations work on two values instead on a sequence of values: and, divide, multiply, or, subtract, xor. #85
  • product works as before, but is not an alias of multiply any longer. #85
  • text_begins, text_contains, text_ends: null values are supported and get passed through.
  • trim: Renamed to trim_cube.

Deprecated

  • filter_bbox, load_collection, resample_spatial: PROJ definitions are deprecated in favor of EPSG codes and WKT2. #58

Removed

  • The following processes don't support ignore_nodata any longer: and, divide, multiply, or, subtract, xor. #85
  • The following processes don't support binary any longer: aggregate_temporal, merge_cubes, resample_cube_temporal. #94
  • Support for vector data cubes, except for the processes aggregate_poylgon and save_result. #68
  • filter_temporal and load_collection: Temporal extents don't support time-only intervals any longer. #88
  • mask: The mask parameter doesn't accept vectors (polygons) any longer. Use process mask_polygon instead. #110
  • Processes:
    • aggregate_polygon. Use aggregate_spatial or aggregate_spatial_binary instead. #62
    • find_collections: Use load_collection and manual data discovery through the clients. API#52
    • filter: Use filter_labels instead.
    • filter_polygon. Use filter_spatial instead. #37
    • output: Use debug instead.
    • property #84
    • reduce: Use reduce_dimension or drop_dimension instead.
    • run_process_graph: Use user-defined processes directly in the process graph instead.

Fixed

  • Several clarifications in written texts. #86
  • between may return a null value.
  • filter_bbox, load_collection: The schema for the property crs in the parameters extent/spatial_extent contained invalid JSON Schema.
  • merge_cubes: Clarified merging behavior with several examples.

0.4.2 - 2019-06-11

Added

  • Added examples.

Fixed

  • Fixed outdated process examples.

0.4.1 - 2019-05-29

Added

  • Added band-name format to load_collection and filter_bands properties.

Fixed

  • product: Added exceptions and examples
  • Clarified error handling related to dimension parameters.

0.4.0 - 2019-03-07

First version which is separated from the openEO API. Complete rework of all processes.

Legacy versions

Older versions of the processes were released as part of the openEO API, see the corresponding changelog for more information.