Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JSON Schema + v2.0.0 beta.1 #51

Merged
merged 4 commits into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading