Skip to content

Commit cd2aa0a

Browse files
authored
Merge pull request #573 from radiantearth/align-dev-to-master
Merge remote-tracking branch 'origin/master' into dev
2 parents aa21516 + 7398077 commit cd2aa0a

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

.github/pull_request_template.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
**Related Issue(s):** #
2+
3+
4+
**Proposed Changes:**
5+
6+
1.
7+
2.
8+
9+
**PR Checklist:**
10+
11+
- [ ] This PR has **no** breaking changes.
12+
- [ ] I have added my changes to the [CHANGELOG](https://github.com/radiantearth/stac-spec/blob/dev/CHANGELOG.md) **or** a CHANGELOG entry is not required.
13+
- [ ] API only: I have run `npm run generate-all` to update the [generated OpenAPI files](https://github.com/radiantearth/stac-spec/blob/dev/api-spec/README.md#openapi-definitions).

api-spec/examples.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
# STAC API Examples
22

3-
A typical WFS will have multiple collections, and each will just offer simple search for its particular collection at `/collections/{collectionId}/items`.
4-
For advanced queries across collections use the STAC API at `/stac/search`.
5-
The filtering is made to be compatible with the STAC API whenever feasible, and the two specs seek to share the general query and filtering patterns.
6-
The key difference is that a STAC search endpoint will do cross collection search.
3+
A typical WFS will have multiple collections, and each will just offer simple search for its particular collection at `GET /collections/{collectionId}/items`.
4+
Due to the limited parameter support in WFS3, it is recommended to use the STAC API endpoint `POST /stac/search` for advanced queries.
5+
The filtering is made to be compatible between STAC API and WFS3 whenever feasible, and the two specs seek to share the general query and filtering patterns.
6+
The key difference is that the STAC API search endpoints will do cross collection search.
7+
8+
Implementations may **optionally** provide support for the full superset of STAC API query parameters to the `/collections/{collectionId}/items` endpoint,
9+
where the collection ID in the path is equivalent to providing that single value in the `collections` query parameter in STAC API.
710

811
## WFS
912

13+
Note that the WFS endpoints _only_ supports HTTP GET. HTTP POST requests are not supported.
14+
1015
Request all the data in `mycollection` that is in New Zealand:
1116

1217
```

0 commit comments

Comments
 (0)