Skip to content
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
15 changes: 11 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Added `orbit_cycle` field ([#6](https://github.com/stac-extensions/sat/issues/6))
- Added sat:orbit_state_vectors field ([#8](https://github.com/stac-extensions/sat/issues/8))

### Changed

### Deprecated
Expand All @@ -19,6 +16,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

## [v1.1.0] - 2024-12-19

### Added

- Added `orbit_cycle` field ([#6](https://github.com/stac-extensions/sat/issues/6))
- Added sat:orbit_state_vectors field ([#8](https://github.com/stac-extensions/sat/issues/8))

### Fixed

- JSON Schema checks `stac_extensions` field in Collections

## [v1.0.0] - 2021-03-04
Expand All @@ -30,5 +36,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `sat:absolute_orbit`
- `sat:anx_datetime`

[Unreleased]: <https://github.com/stac-extensions/sat/compare/v1.0.0...HEAD>
[Unreleased]: <https://github.com/stac-extensions/sat/compare/v1.1.0...HEAD>
[v1.1.0]: <https://github.com/stac-extensions/sat/compare/v1.0.0...v1.1.0>
[v1.0.0]: <https://github.com/stac-extensions/sat/tree/v1.0.0>
4 changes: 2 additions & 2 deletions examples/example-landsat8.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"stac_version": "1.0.0",
"stac_version": "1.1.0",
"stac_extensions": [
"https://stac-extensions.github.io/sat/v1.0.0/schema.json",
"https://stac-extensions.github.io/sat/v1.1.0/schema.json",
"https://stac-extensions.github.io/view/v1.0.0/schema.json"
],
"id": "LC08_L1TP_107018_20181001",
Expand Down
6 changes: 3 additions & 3 deletions examples/example-sentinel1.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"stac_version": "1.0.0",
"stac_version": "1.1.0",
"stac_extensions": [
"https://stac-extensions.github.io/sar/v1.0.0/schema.json",
"https://stac-extensions.github.io/sat/v1.0.0/schema.json"
"https://stac-extensions.github.io/sar/v1.1.0/schema.json",
"https://stac-extensions.github.io/sat/v1.1.0/schema.json"
],
"id": "S1A_IW_SLC__1SDV_20150305T051937_20150305T052005_004892_006196_ABBB",
"type": "Feature",
Expand Down
4 changes: 2 additions & 2 deletions json-schema/schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://stac-extensions.github.io/sat/v1.0.0/schema.json",
"$id": "https://stac-extensions.github.io/sat/v1.1.0/schema.json",
"title": "Satellite Extension",
"description": "STAC Sat Extension to a STAC Item.",
"type": "object",
Expand All @@ -11,7 +11,7 @@
"stac_extensions": {
"type": "array",
"contains": {
"const": "https://stac-extensions.github.io/sat/v1.0.0/schema.json"
"const": "https://stac-extensions.github.io/sat/v1.1.0/schema.json"
}
}
},
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "stac-extension-sat",
"version": "1.0.0",
"version": "1.1.0",
"scripts": {
"test": "npm run check-markdown && npm run check-examples",
"check-markdown": "remark . -f -r .github/remark.yaml",
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/sat/v1.0.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/sat/v1.0.0/schema.json=./json-schema/schema.json"
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/sat/v1.1.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/sat/v1.1.0/schema.json=./json-schema/schema.json"
},
"dependencies": {
"remark-cli": "^12.0.0",
Expand Down
Loading