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
-**Extension [Maturity Classification](../extensions.md#extension-maturity):** Pilot
55
-
-**Dependencies**: [STAC API - Sort Fragment](../fragments/sort/)
56
-
57
32
## Query Parameters and Fields
58
33
59
34
The following list of parameters is used to narrow search queries. They can all be represented as query string parameters
@@ -75,6 +50,8 @@ GET /search?collections=landsat8,sentinel&bbox=-10.415,36.066,3.779,44.213&limit
75
50
}
76
51
```
77
52
53
+
For more examples see [examples.md](examples.md).
54
+
78
55
### Query Parameter Table
79
56
80
57
The core parameters for STAC search are defined by OAFeat, and STAC adds a few parameters for convenience.
@@ -89,7 +66,7 @@ The core parameters for STAC search are defined by OAFeat, and STAC adds a few p
89
66
| collections |\[string]| STAC | Array of one or more Collection IDs to include in the search for items. Only Items in one of the provided Collections will be searched |
90
67
91
68
Only one of either **intersects** or **bbox** should be specified. If both are specified, a 400 Bad Request response
92
-
should be returned. See [examples](#examples) to see sample requests.
69
+
should be returned. See [examples](examples.md) to see sample requests.
93
70
94
71
## Response
95
72
@@ -180,124 +157,61 @@ searching on specific Item properties.
180
157
The other HTTP verbs are not supported in STAC Item Search. The [Transaction Extension](../ogcapi-features/extensions/transaction/README.md)
181
158
does implement them, for STAC and OAFeat implementations that want to enable writing and deleting items.
182
159
183
-
#### Examples
160
+
##Extensions
184
161
185
-
##### Simple GET based search
186
-
Request:
187
-
```http
188
-
HTTP GET /search?bbox=-110,39.5,-105,40.5
189
-
```
162
+
These extensions provide additional functionality that enhances the core item search. All are specified as
163
+
[fragments](../fragments), as they are re-used by other extensions STAC API's that offer the following capabilities at
164
+
the `search` endpoint must include the relevant **conformance URI** in the `conformsTo` response at
165
+
the root (`/`) landing page, to indicate to clients that they will respond properly to requests from clients.
190
166
191
-
Response with `200 OK`:
192
-
```json
193
-
{
194
-
"type": "FeatureCollection",
195
-
"features": [],
196
-
"links": [
197
-
{
198
-
"rel": "next",
199
-
"href": "http://api.cool-sat.com/search?page=2"
200
-
}
201
-
]
202
-
}
203
-
```
204
-
Following the link `http://api.cool-sat.com/search?page=2` will send the user to the next page of results.
0 commit comments