forked from Open-EO/openeo-processes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eq.json
177 lines (177 loc) · 5.32 KB
/
eq.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"id": "eq",
"summary": "Equal to comparison",
"description": "Compares whether `x` is strictly equal to `y`.\n\n**Remarks:**\n\n* Data types MUST be checked strictly, for example a string with the content *1* is not equal to the number *1*. Nevertheless, an integer *1* is equal to a floating point number *1.0* as `integer` is a sub-type of `number`.\n* If any operand is `null`, the return value is `null`. Therefore, `eq(null, null)` returns `null` instead of `true`.\n* If any operand is an array or object, the return value is `false`.\n* Strings are expected to be encoded in UTF-8 by default.\n* Temporal strings MUST be compared differently than other strings and MUST NOT be compared based on their string representation due to different possible representations. For example, the UTC time zone representation `Z` has the same meaning as `+00:00`.",
"categories": [
"texts",
"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."
}
},
{
"name": "delta",
"description": "Only applicable for comparing two numbers. If this optional parameter is set to a positive non-zero number the equality of two numbers is checked against a delta value. This is especially useful to circumvent problems with floating point inaccuracy in machine-based computation.\n\nThis option is basically an alias for the following computation: `lte(abs(minus([x, y]), delta)`",
"schema": {
"type": [
"number",
"null"
]
},
"default": null,
"optional": true
},
{
"name": "case_sensitive",
"description": "Only applicable for comparing two strings. Case sensitive comparison can be disabled by setting this parameter to `false`.",
"schema": {
"type": "boolean"
},
"default": true,
"optional": true
}
],
"returns": {
"description": "Returns `true` if `x` is 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": null,
"y": null
},
"returns": null
},
{
"arguments": {
"x": 1,
"y": 1
},
"returns": true
},
{
"arguments": {
"x": 1,
"y": "1"
},
"returns": false
},
{
"arguments": {
"x": 0,
"y": false
},
"returns": false
},
{
"arguments": {
"x": 1.02,
"y": 1,
"delta": 0.01
},
"returns": false
},
{
"arguments": {
"x": -1,
"y": -1.001,
"delta": 0.01
},
"returns": true
},
{
"arguments": {
"x": 115,
"y": 110,
"delta": 10
},
"returns": true
},
{
"arguments": {
"x": "Test",
"y": "test"
},
"returns": false
},
{
"arguments": {
"x": "Test",
"y": "test",
"case_sensitive": false
},
"returns": true
},
{
"arguments": {
"x": "Ä",
"y": "ä",
"case_sensitive": false
},
"returns": true
},
{
"arguments": {
"x": "00:00:00+00:00",
"y": "00:00:00Z"
},
"returns": true
},
{
"description": "`y` is not a valid date-time representation and therefore will be treated as a string so that the provided values are not equal.",
"arguments": {
"x": "2018-01-01T12:00:00Z",
"y": "2018-01-01T12:00:00"
},
"returns": false
},
{
"description": "01:00 in the time zone +1 is equal to 00:00 in UTC.",
"arguments": {
"x": "2018-01-01T00:00:00Z",
"y": "2018-01-01T01:00:00+01:00"
},
"returns": true
},
{
"arguments": {
"x": [
1,
2,
3
],
"y": [
1,
2,
3
]
},
"returns": false
}
]
}