You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Limits the data to process to the specified bounding box or polygons.",
44
+
"schema": [
45
+
{
46
+
"title": "Bounding Box",
47
+
"type": "object",
48
+
"subtype": "bounding-box",
49
+
"required": [
50
+
"west",
51
+
"south",
52
+
"east",
53
+
"north"
54
+
],
55
+
"properties": {
56
+
"west": {
57
+
"description": "West (lower left corner, coordinate axis 1).",
58
+
"type": "number"
59
+
},
60
+
"south": {
61
+
"description": "South (lower left corner, coordinate axis 2).",
62
+
"type": "number"
63
+
},
64
+
"east": {
65
+
"description": "East (upper right corner, coordinate axis 1).",
66
+
"type": "number"
67
+
},
68
+
"north": {
69
+
"description": "North (upper right corner, coordinate axis 2).",
70
+
"type": "number"
71
+
},
72
+
"base": {
73
+
"description": "Base (optional, lower left corner, coordinate axis 3).",
74
+
"type": [
75
+
"number",
76
+
"null"
77
+
],
78
+
"default": null
79
+
},
80
+
"height": {
81
+
"description": "Height (optional, upper right corner, coordinate axis 3).",
82
+
"type": [
83
+
"number",
84
+
"null"
85
+
],
86
+
"default": null
87
+
},
88
+
"crs": {
89
+
"description": "Coordinate reference system of the extent, specified as as [EPSG code](http://www.epsg-registry.org/) or [WKT2 CRS string](http://docs.opengeospatial.org/is/18-010r7/18-010r7.html). Defaults to `4326` (EPSG code 4326) unless the client explicitly requests a different coordinate reference system.",
90
+
"anyOf": [
91
+
{
92
+
"title": "EPSG Code",
93
+
"type": "integer",
94
+
"subtype": "epsg-code",
95
+
"minimum": 1000,
96
+
"examples": [
97
+
3857
98
+
]
99
+
},
100
+
{
101
+
"title": "WKT2",
102
+
"type": "string",
103
+
"subtype": "wkt2-definition"
104
+
}
105
+
],
106
+
"default": 4326
107
+
}
108
+
}
109
+
},
110
+
{
111
+
"title": "Vector data cube",
112
+
"description": "Limits the data cube to the bounding box of the given geometries in the vector data cube. For raster data, all pixels inside the bounding box that do not intersect with any of the polygons will be set to no data (`null`). Empty geometries are ignored.",
113
+
"type": "object",
114
+
"subtype": "datacube",
115
+
"dimensions": [
116
+
{
117
+
"type": "geometry"
118
+
}
119
+
]
120
+
},
121
+
{
122
+
"title": "No filter",
123
+
"description": "Don't filter spatially. All data is included in the data cube.",
124
+
"type": "null"
125
+
}
126
+
]
127
+
},
128
+
{
129
+
"name": "temporal_extent",
130
+
"description": "Temporal extent specified as two-element array with start and end date/date-time.",
0 commit comments