Skip to content

Commit 8099a51

Browse files
authored
Merge pull request radiantearth#374 from radiantearth/0.6.1
[WIP] Cherry-picked changes for version 0.6.1
2 parents 656cf81 + f8c0393 commit 8099a51

27 files changed

+135
-128
lines changed

.circleci/config.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
- run:
2828
name: validate
2929
command: |
30-
python ~/stac-validator/stac_validator.py catalog-spec/examples/catalog.json
31-
python ~/stac-validator/stac_validator.py collection-spec/examples/sentinel2.json
32-
python ~/stac-validator/stac_validator.py item-spec/examples/sample.json
33-
python ~/stac-validator/stac_validator.py item-spec/examples/sample-full.json
34-
python ~/stac-validator/stac_validator.py item-spec/examples/sentinel2-sample.json
35-
python ~/stac-validator/stac_validator.py item-spec/examples/planet-sample.json
36-
python ~/stac-validator/stac_validator.py item-spec/examples/landsat8-sample.json
37-
python ~/stac-validator/stac_validator.py item-spec/examples/digitalglobe-sample.json
38-
python ~/stac-validator/stac_validator.py item-spec/examples/CBERS_4_MUX_20181029_177_106_L4.json
30+
stac_validator catalog-spec/examples/catalog.json
31+
stac_validator collection-spec/examples/sentinel2.json
32+
stac_validator item-spec/examples/sample.json
33+
stac_validator item-spec/examples/sample-full.json
34+
stac_validator item-spec/examples/sentinel2-sample.json
35+
stac_validator item-spec/examples/planet-sample.json
36+
stac_validator item-spec/examples/landsat8-sample.json
37+
stac_validator item-spec/examples/digitalglobe-sample.json
38+
stac_validator item-spec/examples/CBERS_4_MUX_20181029_177_106_L4.json

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,14 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [v0.6.1] - 2019-01-25
88

9+
### Fixed
10+
- Added `null` as potential data type to `eo:epsg` in the EO extension.
11+
- Fixed several examples and typos.
12+
- Updated JSON Schema versions for uniformity
13+
- Added OpenEO GEE implementation
14+
- Clarified 'intersects' behavior for STAC API
915

1016
## [v0.6.0] - 2018-11-06
1117

@@ -106,6 +112,7 @@ Thanks @hgs-msmith, @matthewhanson, @hgs-trutherford, @rouault, @joshfix, @alkam
106112

107113

108114
[Unreleased]: https://github.com/radiantearth/stac-spec/compare/master...dev
115+
[v0.6.1]: https://github.com/radiantearth/stac-spec/compare/v0.6.0...v0.6.1
109116
[v0.6.0]: https://github.com/radiantearth/stac-spec/compare/v0.5.2...v0.6.0
110117
[v0.5.2]: https://github.com/radiantearth/stac-spec/compare/v0.5.1...v0.5.2
111118
[v0.5.1]: https://github.com/radiantearth/stac-spec/compare/v0.5.0...v0.5.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The minimal amount is specified right now, but best practices should emerge with
2929
## Current version and branches
3030

3131
The [master branch](https://github.com/radiantearth/stac-spec/tree/master) is the 'stable' version of the spec. It is currently version
32-
[0.6.0-rc1](https://github.com/radiantearth/stac-spec/milestone/7) of the specification. The
32+
**0.6.1** of the specification. The
3333
[dev](https://github.com/radiantearth/stac-spec/tree/dev) branch is where active development takes place, and may have inconsistent examples.
3434
Whenever dev stabilizes a release is cut and we merge dev in to master. So master should be stable at any given time.
3535
It is possible that there may be small releases in quick succession, especially if they are nice improvements that do

api-spec/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ It takes a JSON object that can filter on date and time:
2020
```
2121

2222
This tells the server to return all the catalog items it has that are from the second half of March, 2018 and
23-
that fall within this area:
23+
that intersect with this area:
2424

2525
![swiss_bbox](https://user-images.githubusercontent.com/407017/38382405-b5e69344-38be-11e8-90dc-35738678356d.png)
2626

@@ -33,8 +33,7 @@ pageable links to iterate through any results past that limit.
3333
## Dynamic Catalog API
3434

3535
The other endpoint that is included as an option in STAC API is `/stac/`, which implements the [STAC Catalog Spec](../catalog-spec/README.md).
36-
See the [Dynamic Catalog](https://github.com/radiantearth/stac-spec/blob/structure_and_cleanup/catalog-spec/catalog-spec.md#dynamic-catalogs)
37-
section of that spec for more information. Implementing this enables tools like
36+
Implementing this enables tools like
3837
[STAC Browser](https://medium.com/@mojodna/a-stac-browser-348a60674061) to use the dynamic catalog, to enable better
3938
discovery through people browsing and search engines crawling.
4039

api-spec/STAC-query.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.1
22
info:
33
title: The SpatioTemporal Asset Catalog API (standalone)
4-
version: 0.6.0
4+
version: 0.6.1
55
description: >-
66
This is an OpenAPI definition of the core SpatioTemporal Asset Catalog API
77
specification. Any service that implements this endpoint to allow search of
@@ -361,7 +361,7 @@ components:
361361
properties:
362362
stac_version:
363363
type: string
364-
example: 0.6.0
364+
example: 0.6.1
365365
id:
366366
type: string
367367
example: naip

api-spec/STAC-standalone.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.1
22
info:
33
title: The SpatioTemporal Asset Catalog API (standalone)
4-
version: 0.6.0
4+
version: 0.6.1
55
description: >-
66
This is an OpenAPI definition of the core SpatioTemporal Asset Catalog API
77
specification. Any service that implements this endpoint to allow search of
@@ -329,7 +329,7 @@ components:
329329
properties:
330330
stac_version:
331331
type: string
332-
example: 0.6.0
332+
example: 0.6.1
333333
id:
334334
type: string
335335
example: naip

api-spec/WFS3core+STAC.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.1
22
info:
33
title: The SpatioTemporal Asset Catalog API + WFS3
4-
version: 0.6.0
4+
version: 0.6.1
55
description: >-
66
This is an OpenAPI definition of the core SpatioTemporal Asset Catalog API
77
specification. Any service that implements this endpoint to allow search of
@@ -488,7 +488,7 @@ components:
488488
properties:
489489
stac_version:
490490
type: string
491-
example: 0.6.0
491+
example: 0.6.1
492492
id:
493493
type: string
494494
example: naip
@@ -749,7 +749,7 @@ components:
749749
- 'http://www.opengis.net/def/crs/OGC/1.3/CRS84'
750750
stac_version:
751751
type: string
752-
example: 0.6.0
752+
example: 0.6.1
753753
id:
754754
description: 'identifier of the collection used, for example, in URIs'
755755
type: string

api-spec/definitions/STAC-collections.fragment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ components:
1111
properties:
1212
stac_version:
1313
type: string
14-
example: 0.6.0
14+
example: 0.6.1
1515
id:
1616
description: 'identifier of the collection used, for example, in URIs'
1717
type: string

api-spec/definitions/STAC-standalone.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.1
22
info:
33
title: The SpatioTemporal Asset Catalog API (standalone)
4-
version: 0.6.0
4+
version: 0.6.1
55
description: >-
66
This is an OpenAPI definition of the core SpatioTemporal Asset Catalog API
77
specification. Any service that implements this endpoint to allow search of
@@ -327,7 +327,7 @@ components:
327327
properties:
328328
stac_version:
329329
type: string
330-
example: 0.6.0
330+
example: 0.6.1
331331
id:
332332
type: string
333333
example: naip

catalog-spec/catalog-spec.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ might look something like this:
160160

161161
```json
162162
{
163-
"stac_version": "0.6.0",
163+
"stac_version": "0.6.1",
164164
"id": "NAIP",
165165
"description": "Catalog of NAIP Imagery",
166166
"links": [
@@ -178,7 +178,7 @@ A typical '_child_' sub-catalog could look similar:
178178

179179
```json
180180
{
181-
"stac_version": "0.6.0",
181+
"stac_version": "0.6.1",
182182
"id": "NAIP",
183183
"description": "Catalog of NAIP Imagery - 30087",
184184
"links": [

0 commit comments

Comments
 (0)