Skip to content

Commit

Permalink
eq and neq: Explicitly set the minimum value for the delta para…
Browse files Browse the repository at this point in the history
…meter.
  • Loading branch information
m-mohr committed Oct 30, 2023
1 parent d8cf96a commit 899b824
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- `between`: Clarify that `null` is passed through.
- `eq` and `neq`: Explicitly set the minimum value for the `delta` parameter.
- `filter_bbox`, `load_collection`, `load_stac`: Clarified that the bounding box is reprojected to the CRS of the spatial data cube dimensions if required.
- `filter_spatial`: Clarified that masking is applied using the given geometries. [#469](https://github.com/Open-EO/openeo-processes/issues/469)
- `sqrt`: Clarified that NaN is returned for negative numbers.
Expand Down
3 changes: 2 additions & 1 deletion eq.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
"type": [
"number",
"null"
]
],
"minimumExclusive": 0
},
"default": null,
"optional": true
Expand Down
3 changes: 2 additions & 1 deletion neq.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
"type": [
"number",
"null"
]
],
"minimumExclusive": 0
},
"default": null,
"optional": true
Expand Down

0 comments on commit 899b824

Please sign in to comment.