forked from Open-EO/openeo-processes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharray_labels.json
More file actions
33 lines (33 loc) · 838 Bytes
/
Copy patharray_labels.json
File metadata and controls
33 lines (33 loc) · 838 Bytes
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
{
"id": "array_labels",
"summary": "Get the labels for an array",
"description": "Gives all labels for a labeled array. The labels have the same order as in the array.",
"categories": [
"arrays"
],
"parameters": [
{
"name": "data",
"description": "An array with labels.",
"schema": {
"type": "array",
"subtype": "labeled-array",
"items": {
"description": "Any data type."
}
}
}
],
"returns": {
"description": "The labels as an array.",
"schema": {
"type": "array",
"items": {
"type": [
"number",
"string"
]
}
}
}
}