-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathatmospheric_correction.json
106 lines (106 loc) · 3.46 KB
/
atmospheric_correction.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
{
"id": "atmospheric_correction",
"summary": "Apply atmospheric correction",
"description": "Applies an atmospheric correction that converts top of atmosphere reflectance values into bottom of atmosphere/top of canopy reflectance values.",
"categories": [
"cubes",
"optical"
],
"experimental": true,
"parameters": [
{
"description": "Data cube containing multi-spectral optical top of atmosphere reflectances to be corrected.",
"name": "data",
"schema": {
"type": "object",
"subtype": "datacube",
"dimensions": [
{
"type": "spatial",
"axis": [
"x",
"y"
]
},
{
"type": "bands"
}
]
}
},
{
"description": "The atmospheric correction method to use. To get reproducible results, you have to set a specific method.\n\nSet to `null` to allow the back-end to choose, which will improve portability, but reduce reproducibility as you *may* get different results if you run the processes multiple times.",
"name": "method",
"schema": [
{
"type": [
"string"
],
"enum": [
"FORCE",
"iCOR"
]
},
{
"type": "null"
}
]
},
{
"description": "The digital elevation model to use. Set to `null` (the default) to allow the back-end to choose, which will improve portability, but reduce reproducibility.",
"name": "elevation_model",
"optional": true,
"default": null,
"schema": [
{
"type": "string",
"subtype": "collection-id"
},
{
"type": "null"
}
]
},
{
"description": "Proprietary options for the atmospheric correction method. Specifying proprietary options will reduce portability.",
"name": "options",
"optional": true,
"default": {},
"schema": {
"type": "object",
"additionalProperties": false
}
}
],
"returns": {
"description": "Data cube containing bottom of atmosphere reflectances.",
"schema": {
"type": "object",
"subtype": "datacube",
"dimensions": [
{
"type": "spatial",
"axis": [
"x",
"y"
]
},
{
"type": "bands"
}
]
}
},
"exceptions": {
"DigitalElevationModelInvalid": {
"message": "The digital elevation model specified is either not a DEM or can't be used with the data cube given."
}
},
"links": [
{
"rel": "about",
"href": "https://bok.eo4geo.eu/IP1-7-1",
"title": "Atmospheric correction explained by EO4GEO body of knowledge."
}
]
}