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
@@ -91,11 +122,30 @@ If time is a period without a start or end date, the end date is assigned to "no
91
122
92
123
`P1Y2M10DT2H30M` is the same as `"P1Y2M10DT2H30M/" + new Date().toISOString()`
93
124
125
+
## Querying the collections endpoint
126
+
127
+
The collections endpoint does support the following query parameters to remain in alignment with WFS3: `time`, `bbox`,
128
+
and `limit`. Due to the limited parameter support, it is recommended to use the `/stac/search` endpoint for dynamic
129
+
STAC queries. Some STAC implementations may choose to provide support for the full superset of STAC query parameters
130
+
to the collections endpoint, where the collection ID in the path variable is used as the single value in the
131
+
`collections` query parameter array in order to ensure the results are limited to that collection. This is purely
132
+
optional and neither required nor a recommendation.
133
+
134
+
Request 100 items in `mycollection` from New Zealand using the collections endpoint:
135
+
136
+
```
137
+
GET /collections/mycollection/items?bbox=160.6,-55.95,-170,-25.89&limit=100
138
+
```
139
+
140
+
Note that the collections endpoint _only_ supports HTTP GET. HTTP POST requests are not supported.
141
+
94
142
## Extension examples
95
143
96
-
The API Extensions allow for more sophisticated searching, such as the ability to search by geometries and searching on specific Item properties.
144
+
The API Extensions allow for more sophisticated searching, such as the ability to search by geometries and searching on
145
+
specific Item properties.
97
146
98
-
Use the *[Query](extensions/query/README.md)* extension to search for any data falling within a specific geometry collected between Jan 1st and May 1st, 2019:
147
+
Use the *[Query](extensions/query/README.md)* extension to search for any items falling within a specific geometry
0 commit comments