-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
157 lines (157 loc) · 4.87 KB
/
config.json
File metadata and controls
157 lines (157 loc) · 4.87 KB
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
149
150
151
152
153
154
155
156
157
{
"global": {
"response_headers": {
"Access-Control-Allow-Origin": "*"
},
"services": {
"wms": true,
"wcs": true,
"wmts": true
},
"published_CRSs": {
"EPSG:3857": {
"geographic": false,
"horizontal_coord": "x",
"vertical_coord": "y"
},
"EPSG:4326": {
"geographic": true,
"vertical_coord_first": true
},
"EPSG:6933": {
"geographic": false,
"horizontal_coord": "x",
"vertical_coord": "y"
},
"EPSG:32633": {
"geographic": false,
"horizontal_coord": "x",
"vertical_coord": "y"
}
},
"allowed_urls": [
"https://owsdev.eo2cube.org"
],
"title": "eo2cube - OGC Web Services",
"abstract": "eo2cube OGC Web Services",
"info_url": "datacube.remote-sensing.org/",
"keywords": [
"time-series"
],
"contact_info": {
"person": "Steven Hill",
"organisation": "Earth Observation Research Cluster",
"position": "",
"address": {
"type": "postal",
"address": "John-Skilton-Strasse 4a",
"city": "Wuerzburg",
"state": "Bavaria",
"postcode": "97074",
"country": "Germany"
},
"telephone": "+49 931 31-88493",
"email": "l-geofernerkundung@uni-wuerzburg.de"
},
"fees": "",
"access_constraints": "",
"translations_directory": "/env/config/ows_refactored/translations",
"supported_languages": [
"en"
]
},
"wms": {
"max_width": 512,
"max_height": 512
},
"wcs": {
"default_geographic_CRS": "EPSG:4326",
"formats": {
"GeoTIFF": {
"renderers": {
"1": "ows_refactored.s2_vi.wcs.as_tiff_wcs1",
"2": "datacube_ows.wcs2_utils.get_tiff"
},
"mime": "image/geotiff",
"extension": "tif",
"multi-time": false
},
"netCDF": {
"renderers": {
"1": "datacube_ows.wcs1_utils.get_netcdf",
"2": "datacube_ows.wcs2_utils.get_netcdf"
},
"mime": "application/x-netcdf",
"extension": "nc",
"multi-time": true
}
},
"native_format": "GeoTIFF"
},
"layers": [
{
"title": "Satellitenbilder",
"abstract": "Echtfarbaufnahmen von Sentinel-2A/B",
"layers": [
{
"include": "ows_refactored.s2_vi.layers.rgb",
"type": "python"
}
]
},
{
"title": "Vegetationsindizes",
"abstract": "Zum Beispiel NDVI und EVI, berechnet aus Aufnahmen von Sentinel-2A/B",
"layers": [
{
"include": "ows_refactored.s2_vi.layers.ndvi",
"type": "python"
},
{
"include": "ows_refactored.s2_vi.layers.evi",
"type": "python"
}
]
},
{
"title": "Vegetationsindex-Differenzen",
"abstract": "Abweichung vom langjährigen Mittel für verschiedene Anbaufrüchte",
"layers": {
"include": "ows_refactored.s2_vi.layers.diff",
"type": "python"
}
},
{
"title": "Normierte Vegetationsindex-Differenzen",
"abstract": "Abweichung vom langjährigen Mittel für verschiedene Anbaufrüchte in Vielfachen der jeweiligen Standardabweichung",
"layers": {
"include": "ows_refactored.s2_vi.layers.diff_norm",
"type": "python"
}
},
{
"title": "Vegetationsparameter",
"abstract": "Zum Beispiel LAI und Biomasse, modelliert aus Aufnahmen von Sentinel-2A/B",
"layers": [
{
"include": "ows_refactored.s2_vi.layers.lai",
"type": "python"
},
{
"include": "ows_refactored.s2_vi.layers.bm",
"type": "python"
}
]
},
{
"title": "Bodenparameter",
"abstract": "Soil Organic Carbon",
"layers": [
{
"include": "ows_refactored.s2_vi.layers.soc",
"type": "python"
}
]
}
]
}