Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v2.0.0-rc.1 #439

Merged
merged 89 commits into from
May 25, 2023
Merged

Release v2.0.0-rc.1 #439

merged 89 commits into from
May 25, 2023

Conversation

m-mohr
Copy link
Member

@m-mohr m-mohr commented May 4, 2023

[2.0.0-rc.1] - 2023-05-31

Added

  • New processes in proposal state:
    • date_between
    • date_difference
    • filter_vector
    • flatten_dimensions
    • load_geojson
    • load_url
    • unflatten_dimension
    • vector_buffer
    • vector_reproject
    • vector_to_random_points
    • vector_to_regular_points
  • add_dimension: Added new dimension type geometries. #68

Changed

  • Moved from proposals to stable processes:
    • array_append
    • array_concat
    • array_create
    • array_interpolate_linear
    • resample_cube_temporal
  • Added better support for labeled arrays. Labels are not discarded in all cases anymore. Affected processes:
    • array_append
    • array_concat
    • array_modify
  • array_modify: Change the default value for length from 1 to 0. #312
  • Renamed text_merge to text_concat for better alignment with array_concat and existing implementations.
  • apply_neighborhood:
    • Allow null as default value for units.
    • Input and Output for the process can either be data cubes or arrays (if one-dimensional). #387
  • run_udf: Allow all data types instead of just objects in the context parameter. #376
  • load_collection and load_result/load_stac:
    • Require at least one band if not set to null. #372
    • Added a NoDataAvailable exception
  • aggregate_temporal, filter_temporal, load_collection and load_result/load_stac:
    • The temporal intervals must always be non-empty, i.e. the second instance in time must be after the first instance in time. #331
    • 24 as the hour is not allowed anymore. #331
  • inspect: The parameter message has been moved to be the second argument. #369
  • mask and merge_cubes: The spatial dimensions x and y can now be resampled implicitly instead of throwing an error. #402
  • save_result: Added a more concrete DataCubeEmpty exception.
  • New definition for aggregate_spatial:
    • Allows more than 3 input dimensions #126
    • Allow to not export statistics by changing the parameter target_dimension #366
    • Clarify how the resulting vector data cube looks like #356
  • Renamed create_raster_cube to create_data_cube. #68
  • Updated the processes based on the subtypes raster-cube or vector-cube to work with the subtype datacube instead. #68
  • sort and order: The ordering of ties is not defined anymore. #409
  • quantiles: Parameter probabilities provided as array must be in ascending order. #297
  • fit_curve and predict_curve: Heavily modified specifications. fit_curve works on arrays instead of data cubes, predict_curve doesn't support gap filling anymore, clarify no-data handling, ... #425
  • climatological_normal: The climatology_period parameter accepts an array of integers instead of strings. #331

Deprecated

  • aggregate_spatial, filter_spatial, load_collection, mask_polygon: GeoJSON input is deprecated in favor of load_geojson. #346

Removed

  • The examples folder has been migrated to the openEO Community Examples repository.
  • between: Support for temporal comparison. Use date_between instead. #331
  • Deprecated GeometryCollections are not supported any longer. #389
  • Deprecated PROJ definitions for the CRS are not supported any longer.
  • load_result:
    • Renamed to load_stac
    • The subtype job-id was removed in favor of providing a URL. #322, #377, #384
    • GeoJSON input is not supported any longer. Use load_geojson instead. #346
  • The comparison processes eq, neq, lt, lte, gt, gte and array_contains:
    • Removed support for temporal comparison. Instead explicitly use date_difference.
    • Removed support for the input data types array and object. #208
  • sort and order: Removed support for time-only values. #331

Fixed

  • aggregate_spatial:
    • Clarified that feature properties are preserved for vector data cubes and all GeoJSON Features. #270
    • Clarified that a TargetDimensionExists exception is thrown if the target dimension exists.
  • apply and array_apply: Fixed broken references to the absolute process
  • apply_dimension: Clarify the behavior for when a dimension gets 'dropped'. #357
  • apply_neighborhood:
    • Parameter overlap was optional but had no default value and no schema for the default value defined.
    • Clarified that the overlap must be included in the returned data cube but value changes are ignored. #386
    • Removed a conflicting statement that dimension labels can be changed. #385
  • array_contains and array_find: Clarify that giving null as value always returns false or null respectively, also fixed the incorrect examples. #348
  • array_interpolate_linear: Return value was incorrectly specified as number or null. It must return an array instead. #333
  • is_nan: Fixed a wrong description of the return value and simplified/clarified the process descriptions overall. #360
  • is_nodata: Clarified that NaN can be considered as a no-data value only if it is explicitly specified as no-data value. #361
  • merge_cubes: Clarified descriptions to better describe when a merge is possible. #379
  • rename_labels: Clarified that the LabelsNotEnumerated exception is thrown if source is empty instead of if target is empty. #321
  • round: Clarify that the rounding for ties applies not only for integers. #326
  • save_result: Clarified that the process always returns true (and otherwise throws). #334
  • Handling of empty geometries is clarified throughout the processes. #404

m-mohr and others added 30 commits December 13, 2021 11:28
…tations.

Renamed `text_merge` to `text_concat` for better alignment with `array_concat`.
)

* Better support for labeled arrays in array processes that previously discarded them. Should help with #233.

* Update proposals/array_append.json

* Throw an error when labels exist in both arrays.
…s thrown if `source` is empty instead of if `target` is empty. #321
…ault value and no schena for the default value defined.
…gers. #326 (#327)

Co-authored-by: Jan Jezeršek <jan.jezersek@gmail.com>
… `number` or `null`. It must return an array instead. #333
Co-authored-by: clausmichele <claus.michele@hotmail.it>
Co-authored-by: clausmichele <Michele.Claus@eurac.edu>
…ue` always returns `false` or `null` respectively, also fixed the incorrect examples. #348
Co-authored-by: Mattia Rossi <mattia.rossi@eurac.edu>
Fixes for the random forest processes
soxofaan and others added 8 commits March 31, 2023 18:00
* Improve summary of order process

* Link between processes, other wordsmithing

---------

Co-authored-by: Matthias Mohr <webmaster@mamo-net.de>
* Add load_http #415
* load_http -> load_url
* Apply suggestions from code review

Co-authored-by: Stefaan Lippens <soxofaan@users.noreply.github.com>
* Add load_geojson #346 #415
* Issue #430 Finetune aggregate_temporal_period description

* Update aggregate_temporal_period.json

---------

Co-authored-by: Matthias Mohr <webmaster@mamo-net.de>
* The temporal intervals must always be non-empty, i.e. the second instance in time must be after the first instance in time. #331

* Add uniqueItems, remove mention of 24 as the hour, remove temporal-interval subtype from climatological_normal (as it has inclusive upper boundaries)

* Improved terminology

* Update load_stac

* Updates according to recent discussions #331

* Apply suggestions from code review

Co-authored-by: Stefaan Lippens <soxofaan@users.noreply.github.com>

* Remove timezone from times

---------

Co-authored-by: Stefaan Lippens <soxofaan@users.noreply.github.com>
* Fix description of fit_curve

* Fine-tune description

* New version for fit_curve and predict_curve

* fit_curve: Use a labeled-array for data
* Handle units in vector processes #330

Co-authored-by: Daniel Thiex <60705209+dthiex@users.noreply.github.com>
mkadunc
mkadunc previously approved these changes May 8, 2023
filter_bbox.json Outdated Show resolved Hide resolved
mkadunc
mkadunc previously approved these changes May 25, 2023
@m-mohr m-mohr merged commit 965bbae into master May 25, 2023
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants