Skip to content

Commit 9ef192c

Browse files
committed
Merge branch 'dev' into openapi-cleanup-and-spectral-and-remark-upgrade
2 parents ac16ed6 + a81b34c commit 9ef192c

File tree

12 files changed

+36
-24
lines changed

12 files changed

+36
-24
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,24 @@
44
# STAC API
55

66
- [STAC API](#stac-api)
7+
- [Releases](#releases)
78
- [About](#about)
89
- [Stability Note](#stability-note)
910
- [Maturity Classification](#maturity-classification)
1011
- [Communication](#communication)
1112
- [In this repository](#in-this-repository)
1213
- [Contributing](#contributing)
1314

15+
## Releases
16+
17+
- [v1.0.0-rc.1](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-rc.1)
18+
- [v1.0.0-beta.5](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.5)
19+
- [v1.0.0-beta.4](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.4)
20+
- [v1.0.0-beta.3](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.3)
21+
- [v1.0.0-beta.2](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.2)
22+
- [v1.0.0-beta.1](https://github.com/radiantearth/stac-api-spec/tree/v1.0.0-beta.1)
23+
- [v0.9.0](https://github.com/radiantearth/stac-api-spec/tree/v0.9.0)
24+
1425
## About
1526

1627
The SpatioTemporal Asset Catalog (STAC) family of specifications aim to standardize the way geospatial asset metadata is structured and queried.

build/index.html

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@
1313
<h1>STAC API</h1>
1414
<h2>Conformance Classes</h2>
1515
<ul>
16-
<li><a href="core/">Core</a></li>
17-
<li><a href="item-search/">Item Search</a></li>
18-
<li><a href="ogcapi-features/">STAC Features</a></li>
19-
<li><a href="collections/">Collections</a></li>
16+
<li><a href="core/">STAC API - Core</a></li>
17+
<li><a href="item-search/">STAC API - Item Search</a></li>
18+
<li><a href="ogcapi-features/">STAC API - Features</a></li>
19+
<li><a href="collections/">STAC API - Collections</a></li>
20+
<li><a href="children/">STAC API - Children</a></li>
21+
<li><a href="browseable/">STAC API - Browseable</a></li>
2022
</ul>
2123
</body>
2224

collections/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- **Conformance URIs:**
1111
- <https://api.stacspec.org/v1.0.0-rc.1/collections>
1212
- <https://api.stacspec.org/v1.0.0-rc.1/core>
13-
- **[Maturity Classification](../README.md#maturity-classification):** Proposal
13+
- **[Maturity Classification](../README.md#maturity-classification):** Candidate
1414
- **Dependencies**: [STAC API - Core](../core)
1515

1616
A STAC API can return information about all STAC [Collections](../stac-spec/collection-spec/collection-spec.md) available using a link

core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- **OpenAPI specification:** [openapi.yaml](openapi.yaml) ([rendered version](https://api.stacspec.org/v1.0.0-rc.1/core)),
1111
- **Conformance URIs:**
1212
- <https://api.stacspec.org/v1.0.0-rc.1/core>
13-
- **[Maturity Classification](../README.md#maturity-classification):** Pilot
13+
- **[Maturity Classification](../README.md#maturity-classification):** Candidate
1414
- **Dependencies**: None
1515
and [commons.yaml](commons.yaml) is the OpenAPI version of the core [STAC spec](../stac-spec) JSON Schemas.
1616

extensions.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ Only extensions have conformance classes, as they define the functionality along
2626
**NOTE**: *Currently the fragments are only used in item-search, but in the next release we will define extensions for all the fragments that
2727
are scoped against ogcapi-features*.
2828

29-
## List of community extensions
29+
## List of Extensions
3030

3131
This is the list of all extensions that are contained in the stac-api-spec repository.
3232

3333
| Extension Name | Scope* | Description | Maturity |
3434
| --------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ---------- |
35-
| [Fields](item-search/README.md#fields-extension) | [Item Search](item-search/) request | Adds parameter to control which fields are returned in the response. | *Pilot* |
36-
| [Filter](item-search/README.md#filter-extension) | [Item Search](item-search/) and [STAC API - Features](ogcapi-features) `/items` requests | Adds parameter to search Item and Collection properties. | *Pilot* |
37-
| [Context](item-search/README.md#context-extension) | [Item Search](item-search/) response ([ItemCollection](fragments/itemcollection/README.md)) | Adds search related metadata (context) to ItemCollection. | *Proposal* |
38-
| [Sort](item-search/README.md#sort-extension) | [Item Search](item-search/) request | Adds Parameter to control sorting of returns results. | *Pilot* |
39-
| [Transaction](ogcapi-features/extensions/transaction/README.md) | [STAC API - Features](ogcapi-features) POST on `/items` endpoint, DELETE/PUT on `/items/{itemId}` endpoint | Adds PUT and DELETE endpoints for the creation, editing, and deleting of Item objects. | *Pilot* |
35+
| [Fields](item-search/README.md#fields-extension) | [Item Search](item-search/) request | Adds parameter to control which fields are returned in the response. | Candidate |
36+
| [Filter](item-search/README.md#filter-extension) | [Item Search](item-search/) and [STAC API - Features](ogcapi-features) `/items` requests | Adds parameter to search Item and Collection properties. | Pilot |
37+
| [Context](item-search/README.md#context-extension) | [Item Search](item-search/) response ([ItemCollection](fragments/itemcollection/README.md)) | Adds search related metadata (context) to ItemCollection. | Candidate |
38+
| [Sort](item-search/README.md#sort-extension) | [Item Search](item-search/) request | Adds Parameter to control sorting of returns results. | Candidate |
39+
| [Transaction](ogcapi-features/extensions/transaction/README.md) | [STAC API - Features](ogcapi-features) POST on `/items` endpoint, DELETE/PUT on `/items/{itemId}` endpoint | Adds PUT and DELETE endpoints for the creation, editing, and deleting of Item objects. | Candidate |
4040
| [Items and Collections API Version](ogcapi-features/extensions/version/README.md) | [STAC API - Features](ogcapi-features) on `/items` endpoint | Adds GET versions resource to Collection and Item endpoints and provides semantics for a versioning scheme for Collection and Item objects. | *Proposal* |
41-
| [Query](item-search/README.md#query-extension) | [Item Search](item-search/) request | Adds parameter to search Item and Collection properties. | *Pilot* |
41+
| [Query](item-search/README.md#query-extension) | [Item Search](item-search/) request | Adds parameter to search Item and Collection properties. | Candidate |
4242

4343
### Conformance classes of extensions
4444

fragments/context/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
- **Conformance Classes:**
55
- Item Search binding: <https://api.stacspec.org/v1.0.0-rc.1/item-search#context>
66
- STAC Features binding: <https://api.stacspec.org/v1.0.0-rc.1/ogcapi-features#context>
7-
- **Fragment [Maturity Classification](../../README.md#maturity-classification):** Pilot
7+
- **Fragment [Maturity Classification](../../README.md#maturity-classification):** Candidate
88
- **Dependents:**
99
- [Item Search](../../item-search)
1010

fragments/fields/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
- **Conformance Classes:**
55
- Item Search binding: <https://api.stacspec.org/v1.0.0-rc.1/item-search#fields>
66
- STAC Features binding: <https://api.stacspec.org/v1.0.0-rc.1/ogcapi-features#fields>
7-
- **Fragment [Maturity Classification](../../README.md#maturity-classification):** Pilot
7+
- **Fragment [Maturity Classification](../../README.md#maturity-classification):** Candidate
88
- **Dependents:**
99
- [Item Search](../../item-search)
1010
- [STAC Features](../../ogcapi-features)

fragments/filter/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,6 @@ These projects have or are developing CQL2 support:
230230
- [pgstac](https://github.com/stac-utils/pgstac) supports CQL2 JSON
231231
- [pygeofilter](https://github.com/geopython/pygeofilter) has support for CQL2 JSON and for the older ECQL standard that
232232
- [xtraplatform-spatial](https://github.com/interactive-instruments/xtraplatform-spatial) has support for CQL2 Text and provides an [ANTLR 4 grammer](https://github.com/interactive-instruments/xtraplatform-spatial/tree/master/xtraplatform-cql/src/main/antlr/de/ii/xtraplatform/cql/infra)
233-
is similar to CQL2 Text
234233
- [Geotools](https://github.com/geotools/geotools) has support for [CQL2 text](https://github.com/geotools/geotools/tree/main/modules/library/cql/src/main/java/org/geotools/filter/text/cql2)
235234
- [Franklin](https://github.com/azavea/franklin) is working on it in [this PR](https://github.com/azavea/franklin/pull/750).
236235

fragments/query/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
- **OpenAPI specification:** [openapi.yaml](openapi.yaml)
44
- **Conformance Class:** <https://api.stacspec.org/v1.0.0-rc.1/item-search#query>
5-
- **Extension [Maturity Classification](../../README.md#maturity-classification):** Pilot
5+
- **Extension [Maturity Classification](../../README.md#maturity-classification):** Candidate
66
- **Dependents:**
77
- [Item Search](../../item-search)
88

fragments/sort/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
- **Conformance Class:**
55
- Item Search binding: <https://api.stacspec.org/v1.0.0-rc.1/item-search#sort>
66
- STAC Features binding: <https://api.stacspec.org/v1.0.0-rc.1/ogcapi-features#sort>
7-
- **Fragment [Maturity Classification](../../README.md#maturity-classification):** Pilot
7+
- **Fragment [Maturity Classification](../../README.md#maturity-classification):** Candidate
88
- **Dependents:**
99
- [Item Search](../../item-search)
1010
- [STAC Features](../../ogcapi-features)

0 commit comments

Comments
 (0)