forked from Open-EO/openeo-processes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gte.json
142 lines (142 loc) · 3.71 KB
/
gte.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"id": "gte",
"summary": "Greater than or equal to comparison",
"description": "Compares whether `x` is greater than or equal to `y`.\n\n**Remarks:**\n\n* If any operand is `null`, the return value is `null`. Therefore, `gte(null, null)` returns `null` instead of `true`.\n* If any operand is an array or object, the return value is `false`.\n* If the operands are not equal (see process ``eq()``) and any of them is not a `number` or temporal string (`date`, `time` or `date-time`), the process returns `false`.\n* Temporal strings can *not* be compared based on their string representation due to the time zone / time-offset representations.",
"categories": [
"comparison"
],
"parameters": [
{
"name": "x",
"description": "First operand.",
"schema": {
"description": "Any data type is allowed."
}
},
{
"name": "y",
"description": "Second operand.",
"schema": {
"description": "Any data type is allowed."
}
}
],
"returns": {
"description": "`true` if `x` is greater than or equal to `y`, `null` if any operand is `null`, otherwise `false`.",
"schema": {
"type": [
"boolean",
"null"
]
}
},
"examples": [
{
"arguments": {
"x": 1,
"y": null
},
"returns": null
},
{
"arguments": {
"x": 0,
"y": 0
},
"returns": true
},
{
"arguments": {
"x": 1,
"y": 2
},
"returns": false
},
{
"arguments": {
"x": -0.5,
"y": -0.6
},
"returns": true
},
{
"arguments": {
"x": "00:00:00Z",
"y": "00:00:00+01:00"
},
"returns": true
},
{
"arguments": {
"x": "1950-01-01T00:00:00Z",
"y": "2018-01-01T12:00:00Z"
},
"returns": false
},
{
"arguments": {
"x": "2018-01-01T12:00:00+00:00",
"y": "2018-01-01T12:00:00Z"
},
"returns": true
},
{
"arguments": {
"x": true,
"y": false
},
"returns": false
},
{
"arguments": {
"x": [
1,
2,
3
],
"y": [
1,
2,
3
]
},
"returns": false
}
],
"process_graph": {
"eq": {
"process_id": "eq",
"arguments": {
"x": {
"from_parameter": "x"
},
"y": {
"from_parameter": "y"
}
}
},
"gt": {
"process_id": "gt",
"arguments": {
"x": {
"from_parameter": "x"
},
"y": {
"from_parameter": "y"
}
}
},
"or": {
"process_id": "or",
"arguments": {
"x": {
"from_node": "gt"
},
"y": {
"from_node": "eq"
}
},
"result": true
}
}
}