-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
4 changed files
with
146 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
104 changes: 104 additions & 0 deletions
104
openeo_driver/specs/openeo-processes/experimental/text_concat.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
{ | ||
"id": "text_concat", | ||
"summary": "Concatenate elements to a single text", | ||
"description": "Merges text representations (also known as *string*) of a set of elements to a single text, having the separator between each element.", | ||
"categories": [ | ||
"texts" | ||
], | ||
"parameters": [ | ||
{ | ||
"name": "data", | ||
"description": "A set of elements. Numbers, boolean values and null values get converted to their (lower case) string representation. For example: `1` (integer), `-1.5` (number), `true` / `false` (boolean values)", | ||
"schema": { | ||
"type": "array", | ||
"items": { | ||
"type": [ | ||
"string", | ||
"number", | ||
"boolean", | ||
"null" | ||
] | ||
} | ||
} | ||
}, | ||
{ | ||
"name": "separator", | ||
"description": "A separator to put between each of the individual texts. Defaults to an empty string.", | ||
"schema": { | ||
"type": [ | ||
"string", | ||
"number", | ||
"boolean", | ||
"null" | ||
] | ||
}, | ||
"default": "", | ||
"optional": true | ||
} | ||
], | ||
"returns": { | ||
"description": "A string containing a string representation of all the array elements in the same order, with the separator between each element.", | ||
"schema": { | ||
"type": "string" | ||
} | ||
}, | ||
"examples": [ | ||
{ | ||
"arguments": { | ||
"data": [ | ||
"Hello", | ||
"World" | ||
], | ||
"separator": " " | ||
}, | ||
"returns": "Hello World" | ||
}, | ||
{ | ||
"arguments": { | ||
"data": [ | ||
1, | ||
2, | ||
3, | ||
4, | ||
5, | ||
6, | ||
7, | ||
8, | ||
9, | ||
0 | ||
] | ||
}, | ||
"returns": "1234567890" | ||
}, | ||
{ | ||
"arguments": { | ||
"data": [ | ||
null, | ||
true, | ||
false, | ||
1, | ||
-1.5, | ||
"ß" | ||
], | ||
"separator": "\n" | ||
}, | ||
"returns": "null\ntrue\nfalse\n1\n-1.5\nß" | ||
}, | ||
{ | ||
"arguments": { | ||
"data": [ | ||
2, | ||
0 | ||
], | ||
"separator": 1 | ||
}, | ||
"returns": "210" | ||
}, | ||
{ | ||
"arguments": { | ||
"data": [] | ||
}, | ||
"returns": "" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters