Skip to content

Commit

Permalink
between: Clarify that null is passed through
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Oct 30, 2023
1 parent f303adf commit d8cf96a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- `between`: Clarify that `null` is passed through.
- `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
4 changes: 2 additions & 2 deletions between.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"parameters": [
{
"name": "x",
"description": "The value to check.",
"description": "The value to check.\n\nThe no-data value `null` is passed through and therefore gets propagated.",
"schema": {
"description": "Any data type is allowed."
}
Expand Down Expand Up @@ -38,7 +38,7 @@
}
],
"returns": {
"description": "`true` if `x` is between the specified bounds, otherwise `false`.",
"description": "`true` if `x` is between the specified bounds, `null` if `x` is a no-data value, `false` otherwise.",
"schema": {
"type": [
"boolean",
Expand Down

0 comments on commit d8cf96a

Please sign in to comment.