-
Notifications
You must be signed in to change notification settings - Fork 1
/
extractor_info.json
148 lines (148 loc) · 3.34 KB
/
extractor_info.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
{
"@context": "http://clowder.ncsa.illinois.edu/contexts/extractors.jsonld",
"name": "ncsa.opendronemap.stitcher",
"version": "2.3.0",
"description": "Stitch drone images using OpenDroneMap.",
"author": "Bing Zhang <bing@illinois.edu>",
"contributors": [
"Chris Schnaufer <schnaufer@email.arizona.edu>",
"Sara Lambert <lambert8@illinois.edu>",
"Rob Kooper <kooper@illinois.edu>"
],
"contexts": [],
"repository": [
{
"repType": "git",
"repUrl": "https://opensource.ncsa.illinois.edu/bitbucket/projects/CATS/repos/extractors-opendronemap"
},
{
"repType": "docker",
"repUrl": "clowder/extractors-opendronemap"
}
],
"process": {
"dataset": [
"file.added"
]
},
"external_services": [],
"dependencies": [
"opendronemap",
"pika",
"requests"
],
"bibtex": [],
"categories": [
"EXTRACT"
],
"labels": [
"Type/Image",
"Domain/UAV"
],
"parameters": {
"schema": {
"fast_orthophoto": {
"type": "boolean",
"title": "Use sparse reconstruction (fast orthophoto)",
"default": true
},
"orthophoto_resolution": {
"type": "string",
"title": "Quality",
"enum": [
"2",
"5",
"10"
],
"default": "5"
},
"radiometric_calibration": {
"type": "string",
"title": "Radiometric normalization.",
"enum": [
"none",
"camera",
"camera+sun"
],
"default": "none"
},
"dsm": {
"type": "boolean",
"title": "Create digital surface model",
"default": false
},
"dtm": {
"type": "boolean",
"title": "Create digital terrain model",
"default": false
},
"upload_logfile": {
"type": "boolean",
"title": "Upload log file",
"default": true
},
"upload_laz": {
"type": "boolean",
"title": "Upload LAZ file",
"default": false
},
"upload_boundary": {
"type": "boolean",
"title": "Upload boundary files",
"default": false
}
},
"form": [
{
"key": "fast_orthophoto",
"inlinetitle": "Use sparse reconstruction (fast orthophoto flag)",
"notitle": true
},
{
"key": "orthophoto_resolution",
"type": "select",
"notitle": false,
"titleMap": {
"2": "High Quality",
"5": "Medium Quality",
"10": "Low Quality"
}
},
{
"key": "radiometric_calibration",
"type": "select",
"notitle": false,
"titleMap": {
"none": "none",
"camera": "camera",
"camera+sun": "camera+sun"
}
},
{
"key": "dsm",
"inlinetitle": "Create digital surface model",
"notitle": true
},
{
"key": "dtm",
"inlinetitle": "Create digital terrain model",
"notitle": true
},
{
"key": "upload_logfile",
"inlinetitle": "Upload log file",
"notitle": true
},
{
"key": "upload_laz",
"inlinetitle": "Upload LAZ file",
"notitle": true
},
{
"key": "upload_boundary",
"inlinetitle": "Upload boundary files",
"notitle": true
}
]
}
}