-
Notifications
You must be signed in to change notification settings - Fork 17
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
Release v2.0.0-rc.1 #439
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…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 <[email protected]>
…g implementations. #329
… `number` or `null`. It must return an array instead. #333
Co-authored-by: clausmichele <[email protected]>
Co-authored-by: clausmichele <[email protected]>
…ue` always returns `false` or `null` respectively, also fixed the incorrect examples. #348
Co-authored-by: Mattia Rossi <[email protected]>
Fixes for the random forest processes
* Improve summary of order process * Link between processes, other wordsmithing --------- Co-authored-by: Matthias Mohr <[email protected]>
* Add load_http #415 * load_http -> load_url * Apply suggestions from code review Co-authored-by: Stefaan Lippens <[email protected]>
* Issue #430 Finetune aggregate_temporal_period description * Update aggregate_temporal_period.json --------- Co-authored-by: Matthias Mohr <[email protected]>
* 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 <[email protected]> * Remove timezone from times --------- Co-authored-by: Stefaan Lippens <[email protected]>
* 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 <[email protected]>
mkadunc
previously approved these changes
May 8, 2023
mkadunc
previously approved these changes
May 25, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
[2.0.0-rc.1] - 2023-05-31
Added
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 typegeometries
. #68Changed
array_append
array_concat
array_create
array_interpolate_linear
resample_cube_temporal
array_append
array_concat
array_modify
array_modify
: Change the default value forlength
from1
to0
. #312text_merge
totext_concat
for better alignment witharray_concat
and existing implementations.apply_neighborhood
:null
as default value for units.process
can either be data cubes or arrays (if one-dimensional). #387run_udf
: Allow all data types instead of just objects in thecontext
parameter. #376load_collection
andload_result
/load_stac
:null
. #372NoDataAvailable
exceptionaggregate_temporal
,filter_temporal
,load_collection
andload_result
/load_stac
:24
as the hour is not allowed anymore. #331inspect
: The parametermessage
has been moved to be the second argument. #369mask
andmerge_cubes
: The spatial dimensionsx
andy
can now be resampled implicitly instead of throwing an error. #402save_result
: Added a more concreteDataCubeEmpty
exception.aggregate_spatial
:target_dimension
#366create_raster_cube
tocreate_data_cube
. #68raster-cube
orvector-cube
to work with the subtypedatacube
instead. #68sort
andorder
: The ordering of ties is not defined anymore. #409quantiles
: Parameterprobabilities
provided as array must be in ascending order. #297fit_curve
andpredict_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, ... #425climatological_normal
: Theclimatology_period
parameter accepts an array of integers instead of strings. #331Deprecated
aggregate_spatial
,filter_spatial
,load_collection
,mask_polygon
: GeoJSON input is deprecated in favor ofload_geojson
. #346Removed
examples
folder has been migrated to the openEO Community Examples repository.between
: Support for temporal comparison. Usedate_between
instead. #331GeometryCollections
are not supported any longer. #389load_result
:load_stac
job-id
was removed in favor of providing a URL. #322, #377, #384load_geojson
instead. #346eq
,neq
,lt
,lte
,gt
,gte
andarray_contains
:date_difference
.sort
andorder
: Removed support for time-only values. #331Fixed
aggregate_spatial
:TargetDimensionExists
exception is thrown if the target dimension exists.apply
andarray_apply
: Fixed broken references to theabsolute
processapply_dimension
: Clarify the behavior for when a dimension gets 'dropped'. #357apply_neighborhood
:overlap
was optional but had no default value and no schema for the default value defined.array_contains
andarray_find
: Clarify that givingnull
asvalue
always returnsfalse
ornull
respectively, also fixed the incorrect examples. #348array_interpolate_linear
: Return value was incorrectly specified asnumber
ornull
. It must return an array instead. #333is_nan
: Fixed a wrong description of the return value and simplified/clarified the process descriptions overall. #360is_nodata
: Clarified thatNaN
can be considered as a no-data value only if it is explicitly specified as no-data value. #361merge_cubes
: Clarified descriptions to better describe when a merge is possible. #379rename_labels
: Clarified that theLabelsNotEnumerated
exception is thrown ifsource
is empty instead of iftarget
is empty. #321round
: Clarify that the rounding for ties applies not only for integers. #326save_result
: Clarified that the process always returnstrue
(and otherwise throws). #334