Skip to content

Commit

Permalink
Merge pull request #51 from stac-extensions/v2.0.0-beta.1
Browse files Browse the repository at this point in the history
JSON Schema + v2.0.0 beta.1
  • Loading branch information
emmanuelmathot authored Aug 2, 2024
2 parents 5e1f010 + 51b7572 commit e40adac
Show file tree
Hide file tree
Showing 6 changed files with 283 additions and 166 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v2.0.0-beta.1]

### Added

- Add link relation type `gcps` for Ground Control Points documents
Expand All @@ -30,6 +32,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- `raster:bands` - use `bands` in instead

### Fixed

- Improved and stricter JSON Schema

## [v1.1.0]

### Added
Expand All @@ -40,6 +46,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[Unreleased]: <https://github.com/stac-extensions/raster/compare/v1.1.0...HEAD>
[Unreleased]: <https://github.com/stac-extensions/raster/compare/v2.0.0-beta.1...HEAD>
[v2.0.0-beta.1]: <https://github.com/stac-extensions/tree/v2.0.0-beta.1>
[v1.1.0]: <https://github.com/stac-extensions/tree/v1.1.0>
[v1.0.0]: <https://github.com/stac-extensions/tree/v1.0.0>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Raster Extension Specification

- **Title:** Raster
- **Identifier:** <https://stac-extensions.github.io/raster/v1.1.0/schema.json>
- **Identifier:** <https://stac-extensions.github.io/raster/v2.0.0-beta.1/schema.json>
- **Field Name Prefix:** raster
- **Scope:** Item, Collection
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Candidate
Expand Down
8 changes: 4 additions & 4 deletions examples/item-planet.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"stac_extensions": [
"https://stac-extensions.github.io/sat/v1.0.0/schema.json",
"https://stac-extensions.github.io/view/v1.0.0/schema.json",
"https://stac-extensions.github.io/projection/v1.1.0/schema.json",
"https://stac-extensions.github.io/projection/v2.0.0/schema.json",
"https://stac-extensions.github.io/eo/v2.0.0-beta.1/schema.json",
"https://stac-extensions.github.io/processing/v1.0.0/schema.json",
"https://stac-extensions.github.io/raster/v1.1.0/schema.json"
"https://stac-extensions.github.io/processing/v1.2.0/schema.json",
"https://stac-extensions.github.io/raster/v2.0.0-beta.1/schema.json"
],
"stac_version": "1.0.0",
"links": [],
Expand Down Expand Up @@ -1210,7 +1210,7 @@
"view:sun_azimuth": 94.82318,
"view:incidence_angle": 0.1531593,
"view:off_nadir": 0.1102388,
"proj:epsg": 32750,
"proj:code": "EPSG:32750",
"processing:level": "L3B",
"title": "Planetscope PS2 L3B 01/10/2018 01:54:33",
"disaster:call_id": 857
Expand Down
6 changes: 3 additions & 3 deletions examples/item-sentinel2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"stac_extensions": [
"https://stac-extensions.github.io/eo/v2.0.0-beta.1/schema.json",
"https://stac-extensions.github.io/view/v1.0.0/schema.json",
"https://stac-extensions.github.io/projection/v1.1.0/schema.json",
"https://stac-extensions.github.io/raster/v1.1.0/schema.json"
"https://stac-extensions.github.io/projection/v2.0.0/schema.json",
"https://stac-extensions.github.io/raster/v2.0.0-beta.1/schema.json"
],
"id": "S2B_33SVB_20210221_0_L2A",
"bbox": [
Expand Down Expand Up @@ -50,7 +50,7 @@
],
"gsd": 10,
"view:off_nadir": 0,
"proj:epsg": 32633,
"proj:code": "EPSG:32633",
"sentinel:utm_zone": 33,
"sentinel:latitude_band": "S",
"sentinel:grid_square": "VB",
Expand Down
Loading

0 comments on commit e40adac

Please sign in to comment.