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
| `GET` | `/collections/{collection_id}/tiles/{TileMatrixSetId}/{z}/{x}/{y}[@{scale}x][.{format}]` | image/bin | Create a web map tile image for a collection and a tile index
| `GET` | `/collections/{collection_id}/tiles/{TileMatrixSetId}/{z}/{x}/{y}[@{scale}x][.{format}]` | image/bin | Create a web map tile image for a collection and a tile index
| `GET` | `/collections/{collection_id}/{TileMatrixSetId}/map.html` | HTML | simple map viewer
14
+
| `GET` | `/collections/{collection_id}/point/{lon},{lat}` | JSON | return pixel value from a mosaic assets
15
+
| `GET` | `/collections/{collection_id}/bbox/{minx},{miny},{maxx},{maxy}/assets` | JSON | return list of assets intersecting a bounding box
16
+
| `GET` | `/collections/{collection_id}/point/{lon},{lat}/assets` | JSON | return list of assets intersecting a point
17
+
| `GET` | `/collections/{collection_id}/tiles/{tileMatrixSetId}/{z}/{x}/{y}/assets` | JSON | return list of assets intersecting a XYZ tile
11
18
12
19
### Tiles
13
20
@@ -46,6 +53,9 @@
46
53
-**ids** (str): Comma (',') delimited list of IDS.
47
54
-**bbox** (str): Comma (',') delimited BoundingBox (not used in the search query, but usefull to limit the bbox of the mosaic).
48
55
-**datetime** (str): Datetime filter for the Search Query following `RFC 3339` format (https://github.com/radiantearth/stac-api-spec/blob/v1.0.0/implementation.md#datetime-parameter-handling)
56
+
-**filter** (str): A CQL2 filter expression for filtering items.
57
+
-**filter-lang** (str): CQL2 Language (cql2-text, cql2-json). Defaults to cql2-text.
58
+
-**sortby** (str): An array of property names, prefixed by either '+' for ascending or '-' for descending. If no prefix is provided, '+' is assumed.
49
59
-**limit** (int): The maximum number of results to return (page size). Defaults to 10.
50
60
-**max_items** (int): The maximum number of items to used in a mosaic. Defaults to 100.
51
61
@@ -94,6 +104,9 @@ Example:
94
104
-**ids** (str): Comma (',') delimited list of IDS.
95
105
-**bbox** (str): Comma (',') delimited BoundingBox (not used in the search query, but usefull to limit the bbox of the mosaic).
96
106
-**datetime** (str): Datetime filter for the Search Query following `RFC 3339` format (https://github.com/radiantearth/stac-api-spec/blob/v1.0.0/implementation.md#datetime-parameter-handling)
107
+
-**filter** (str): A CQL2 filter expression for filtering items.
108
+
-**filter-lang** (str): CQL2 Language (cql2-text, cql2-json). Defaults to cql2-text.
109
+
-**sortby** (str): An array of property names, prefixed by either '+' for ascending or '-' for descending. If no prefix is provided, '+' is assumed.
97
110
-**limit** (int): The maximum number of results to return (page size). Defaults to 10.
98
111
-**max_items** (int): The maximum number of items to used in a mosaic. Defaults to 100.
| `GET` | `/collections/{collection_id}/items/{item_id}/tiles[/{TileMatrixSetId}]/{z}/{x}/{y}[@{scale}x][.{format}]` | image/bin | create a web map tile image from assets
| `GET` | `/collections/{collection_id}/items/{item_id}/preview[.{format}]` | image/bin | create a preview image from assets
20
20
| `GET` | `/collections/{collection_id}/items/{item_id}/bbox/{minx},{miny},{maxx},{maxy}[/{width}x{height}].{format}` | image/bin | create an image from part of assets
0 commit comments