-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlulc.json
88 lines (88 loc) · 3.05 KB
/
lulc.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
{
"name": "lulc",
"description": "A GBDX task that performs unsupervised land use land cover classification. here are six classes: vegetation, water, bare soil, clouds, shadows and unclassified.",
"properties": {
"isPublic": true,
"timeout": 7200
},
"version": "0.0.4",
"taskOwnerEmail": "[email protected]",
"inputPortDescriptors": [
{
"name": "image",
"type": "directory",
"description": "Contains input image. The input image must be a WV02/WV03 multispectral image which is atmospherically compensated. If more than one images are contained in this directory, one is picked arbitrarily.",
"required": true
},
{
"name": "vegetation",
"type": "string",
"description": "If True, the output is a vegetation mask. Default is False.",
"required": false
},
{
"name": "water",
"type": "string",
"description": "If True, the output is a water mask. Default is False.",
"required": false
},
{
"name": "soil",
"type": "string",
"description": "If True, the output is a bare soil mask. Default is False.",
"required": false
},
{
"name": "clouds",
"type": "string",
"description": "If True, the output is a cloud mask. Default is False.",
"required": false
},
{
"name": "shadows",
"type": "string",
"description": "If True, the output is a shadow mask. Default is False.",
"required": false
},
{
"name": "unclassified",
"type": "string",
"description": "If True, the output is an unclassified material mask. Default is False.",
"required": false
},
{
"name": "tiles",
"type": "string",
"description": "Number of tiles to tile input image into if it is too big. In that case, the recommended number is 2. Only use this if the default option fails. Default is 1.",
"required": false
},
{
"name": "verbose",
"type": "string",
"description": "If True, save algorithm config files in output directory. To be used for debugging purposes. Default is False.",
"required": false
},
{
"name": "bbox",
"type": "string",
"description": "Bounding box coordinates in lat/long. The format is 'W,S,E,N'. Default is None (entire input image).",
"required": false
}
],
"outputPortDescriptors": [
{
"name": "image",
"type": "directory",
"description": "Contains output image."
}
],
"containerDescriptors": [
{
"type": "DOCKER",
"properties": {
"image": "tdgp/lulc"
},
"command": "python /lulc.py"
}
]
}