forked from Open-EO/openeo-processes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gte.json
130 lines (130 loc) · 3.59 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
{
"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 of the operands is `null`, the return value is `null`.\n* Temporal strings can *not* be compared based on their string representation due to the time zone / time-offset representations.\n* Comparing strings is currently not supported, but is planned to be added in the future.",
"categories": [
"comparison"
],
"parameter_order": ["x", "y"],
"parameters": {
"x": {
"description": "First operand.",
"schema": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
},
{
"type": "string",
"format": "date-time"
},
{
"type": "string",
"format": "date"
},
{
"type": "string",
"format": "time"
}
]
},
"required": true
},
"y": {
"description": "Second operand.",
"schema": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
},
{
"type": "string",
"format": "date-time"
},
{
"type": "string",
"format": "date"
},
{
"type": "string",
"format": "time"
}
]
},
"required": true
}
},
"returns": {
"description": "`true` if `x` is greater than or equal to `y` or `null` if any of the operands 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
}
],
"links": [
{
"rel": "about",
"href": "https://open-eo.github.io/openeo-api/processes/#openeo-specific-formats",
"title": "Information about the supported temporal formats."
}
]
}