Skip to content

Commit e40adac

Browse files
Merge pull request #51 from stac-extensions/v2.0.0-beta.1
JSON Schema + v2.0.0 beta.1
2 parents 5e1f010 + 51b7572 commit e40adac

File tree

6 files changed

+283
-166
lines changed

6 files changed

+283
-166
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [v2.0.0-beta.1]
11+
1012
### Added
1113

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

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

35+
### Fixed
36+
37+
- Improved and stricter JSON Schema
38+
3339
## [v1.1.0]
3440

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

4147
- Initial release
4248

43-
[Unreleased]: <https://github.com/stac-extensions/raster/compare/v1.1.0...HEAD>
49+
[Unreleased]: <https://github.com/stac-extensions/raster/compare/v2.0.0-beta.1...HEAD>
50+
[v2.0.0-beta.1]: <https://github.com/stac-extensions/tree/v2.0.0-beta.1>
4451
[v1.1.0]: <https://github.com/stac-extensions/tree/v1.1.0>
4552
[v1.0.0]: <https://github.com/stac-extensions/tree/v1.0.0>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Raster Extension Specification
22

33
- **Title:** Raster
4-
- **Identifier:** <https://stac-extensions.github.io/raster/v1.1.0/schema.json>
4+
- **Identifier:** <https://stac-extensions.github.io/raster/v2.0.0-beta.1/schema.json>
55
- **Field Name Prefix:** raster
66
- **Scope:** Item, Collection
77
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Candidate

examples/item-planet.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
"stac_extensions": [
33
"https://stac-extensions.github.io/sat/v1.0.0/schema.json",
44
"https://stac-extensions.github.io/view/v1.0.0/schema.json",
5-
"https://stac-extensions.github.io/projection/v1.1.0/schema.json",
5+
"https://stac-extensions.github.io/projection/v2.0.0/schema.json",
66
"https://stac-extensions.github.io/eo/v2.0.0-beta.1/schema.json",
7-
"https://stac-extensions.github.io/processing/v1.0.0/schema.json",
8-
"https://stac-extensions.github.io/raster/v1.1.0/schema.json"
7+
"https://stac-extensions.github.io/processing/v1.2.0/schema.json",
8+
"https://stac-extensions.github.io/raster/v2.0.0-beta.1/schema.json"
99
],
1010
"stac_version": "1.0.0",
1111
"links": [],
@@ -1210,7 +1210,7 @@
12101210
"view:sun_azimuth": 94.82318,
12111211
"view:incidence_angle": 0.1531593,
12121212
"view:off_nadir": 0.1102388,
1213-
"proj:epsg": 32750,
1213+
"proj:code": "EPSG:32750",
12141214
"processing:level": "L3B",
12151215
"title": "Planetscope PS2 L3B 01/10/2018 01:54:33",
12161216
"disaster:call_id": 857

examples/item-sentinel2.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"stac_extensions": [
55
"https://stac-extensions.github.io/eo/v2.0.0-beta.1/schema.json",
66
"https://stac-extensions.github.io/view/v1.0.0/schema.json",
7-
"https://stac-extensions.github.io/projection/v1.1.0/schema.json",
8-
"https://stac-extensions.github.io/raster/v1.1.0/schema.json"
7+
"https://stac-extensions.github.io/projection/v2.0.0/schema.json",
8+
"https://stac-extensions.github.io/raster/v2.0.0-beta.1/schema.json"
99
],
1010
"id": "S2B_33SVB_20210221_0_L2A",
1111
"bbox": [
@@ -50,7 +50,7 @@
5050
],
5151
"gsd": 10,
5252
"view:off_nadir": 0,
53-
"proj:epsg": 32633,
53+
"proj:code": "EPSG:32633",
5454
"sentinel:utm_zone": 33,
5555
"sentinel:latitude_band": "S",
5656
"sentinel:grid_square": "VB",

0 commit comments

Comments
 (0)