forked from Open-EO/openeo-processes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
is_nodata.json
43 lines (43 loc) · 1017 Bytes
/
is_nodata.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"id": "is_nodata",
"summary": "Value is not a no-data value",
"description": "Checks whether the specified data is a missing data, i.e. equals to any of the no-data values / `null`.",
"categories": [
"comparison"
],
"parameters": {
"x": {
"description": "The data to check.",
"schema": {
"description": "Any data type is allowed."
},
"required": true
}
},
"returns": {
"description": "`true` if the data is a no-data value, otherwise `false`",
"schema": {
"type": "boolean"
}
},
"examples": [
{
"arguments": {
"x": 1
},
"returns": false
},
{
"arguments": {
"x": "Test"
},
"returns": false
},
{
"arguments": {
"x": null
},
"returns": true
}
]
}