-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwine.json
47 lines (47 loc) · 1.62 KB
/
twine.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
{
"input_values_schema": {
"type": "object",
"properties": {
"h3_cells": {
"description": "Any number of H3 cell indexes (see https://h3geo.org/) to find the elevations of and store. For maximum resolution cells, the elevation is provided at the centrepoint of the cell; the elevations for all cells with a resolution lower than this are calculated as the mean of their immediate children's elevations.",
"type": "array",
"items": {
"type": "integer",
"minimum": 0
},
"minItems": 1
}
},
"required": ["h3_cells"],
"additionalProperties": false
},
"configuration_values_schema": {
"type": "object",
"properties": {
"minimum_resolution": {
"description": "The lowest resolution (largest cell size) to calculate the mean elevation for.",
"type": "number",
"minimum": 0,
"maximum": 15
},
"maximum_resolution": {
"description": "The resolution of cells to extract the centrepoint elevation for.",
"type": "number",
"minimum": 0,
"maximum": 15
},
"storage_location": {
"description": "Whether to store the elevations locally or in the Neo4j database.",
"enum": ["local", "database"]
},
"local_storage_path": {
"description": "If storing the elevations locally, the path to store them as a JSON file at.",
"type": "string"
},
"delete_downloaded_tiles_after_run": {
"description": "Whether to delete the downloaded satellite tiles after running the app.",
"type": "boolean"
}
}
}
}