forked from Open-EO/openeo-processes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mod.json
91 lines (91 loc) · 2.29 KB
/
mod.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
{
"id": "mod",
"summary": "Modulo",
"description": "Remainder after division of `x` by `y`.\n\nThe result of a modulo operation has the sign of the divisor. The handling regarding the sign of the result [differs between programming languages](https://en.wikipedia.org/wiki/Modulo_operation) and needs careful consideration while implementing this process.\n\nThe no-data value `null` is passed through and therefore gets propagated if any of the arguments is `null`.",
"categories": [
"math"
],
"parameter_order": ["x", "y"],
"parameters": {
"x": {
"description": "A number to be used as dividend.",
"schema": {
"type": [
"number",
"null"
]
},
"required": true
},
"y": {
"description": "A number to be used as divisor.",
"schema": {
"type": [
"number",
"null"
]
},
"required": true
}
},
"returns": {
"description": "The remainder after division.",
"schema": {
"type": [
"number",
"null"
]
}
},
"examples": [
{
"arguments": {
"x": 27,
"y": 5
},
"returns": 2
},
{
"arguments": {
"x": -27,
"y": 5
},
"returns": 3
},
{
"arguments": {
"x": 27,
"y": -5
},
"returns": -3
},
{
"arguments": {
"x": -27,
"y": -5
},
"returns": -2
},
{
"arguments": {
"x": 27,
"y": null
},
"returns": null
},
{
"arguments": {
"x": null,
"y": 5
},
"returns": null
}
],
"links": [
{
"rel": "about",
"href": "https://en.wikipedia.org/wiki/Modulo_operation",
"title": "Modulo explained by Wikipedia"
}
]
}