Skip to content

Commit

Permalink
Merge pull request #867 from radiantearth/1.0.0-beta-2-update
Browse files Browse the repository at this point in the history
1.0.0-beta.2 version + changelog update
  • Loading branch information
cholmes authored Jul 8, 2020
2 parents 9429229 + 7f029ac commit 5b556f8
Show file tree
Hide file tree
Showing 71 changed files with 104 additions and 92 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Added

### Changed

### Removed

### Fixed


## [v1.0.0-beta.2] - 2020-07-08

### Added
- JSON-schema file in the Point Cloud extension.

### Changes
### Changed
- Clarification on null geometries, making bbox not required if a null geometry is used.
- Multiple extents (bounding boxes / intervals) are allowed per Collection

Expand Down Expand Up @@ -347,6 +358,7 @@ Thanks @hgs-msmith, @matthewhanson, @hgs-trutherford, @rouault, @joshfix, @alkam


[Unreleased]: <https://github.com/radiantearth/stac-spec/compare/master...dev>
[v1.0.0-beta.2]: <https://github.com/radiantearth/stac-spec/compare/v1.0.0-beta.1..v1.0.0-beta.2>
[v1.0.0-beta.1]: <https://github.com/radiantearth/stac-spec/compare/v0.9.0...v1.0.0-beta.1>
[v0.9.0]: <https://github.com/radiantearth/stac-spec/compare/v0.8.1...v0.9.0>
[v0.8.1]: <https://github.com/radiantearth/stac-spec/compare/v0.8.0...v0.8.1>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ change will require the spec to go to 2.0.0.
## Current version and branches

The [master branch](https://github.com/radiantearth/stac-spec/tree/master) is the 'stable' version of the spec. It is currently version
**1.0.0-beta.1** of the specification. The
**1.0.0-beta.2** of the specification. The
[dev](https://github.com/radiantearth/stac-spec/tree/dev) branch is where active development takes place, and may have inconsistent examples.
Whenever dev stabilizes a release is cut and we merge dev in to master. So master should be stable at any given time.
It is possible that there may be small releases in quick succession, especially if they are nice improvements that do
Expand Down
2 changes: 1 addition & 1 deletion catalog-spec/examples/catalog-items.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"id": "hurricane-harvey-0831",
"title": "Hurricane Harvey 08-31-2017",
"description": "Planet Scenes and Composites for Hurricane Harvey on Aug 31, 2017",
Expand Down
2 changes: 1 addition & 1 deletion catalog-spec/examples/catalog.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"id": "NAIP",
"description": "Catalog of NAIP Imagery",
"links": [
Expand Down
4 changes: 2 additions & 2 deletions catalog-spec/json-schema/catalog.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://schemas.stacspec.org/dev/catalog-spec/json-schema/catalog.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-beta.2/catalog-spec/json-schema/catalog.json#",
"title": "STAC Catalog Specification",
"description": "This object represents Catalogs in a SpatioTemporal Asset Catalog.",
"allOf": [
Expand All @@ -22,7 +22,7 @@
"stac_version": {
"title": "STAC version",
"type": "string",
"const": "1.0.0-beta.1"
"const": "1.0.0-beta.2"
},
"stac_extensions": {
"title": "STAC extensions",
Expand Down
2 changes: 1 addition & 1 deletion collection-spec/examples/landsat-collection.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [],
"id": "landsat-8-l1",
"title": "Landsat 8 L1",
Expand Down
2 changes: 1 addition & 1 deletion collection-spec/examples/sentinel2.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [],
"id": "COPERNICUS/S2",
"title": "Sentinel-2 MSI: MultiSpectral Instrument, Level-1C",
Expand Down
2 changes: 1 addition & 1 deletion collection-spec/json-schema/collection.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://schemas.stacspec.org/dev/collection-spec/json-schema/collection.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-beta.2/collection-spec/json-schema/collection.json#",
"title": "STAC Collection Specification",
"description": "This object represents Collections in a SpatioTemporal Asset Catalog.",
"allOf": [
Expand Down
2 changes: 1 addition & 1 deletion extensions/checksum/examples/sentinel1.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "S1A_EW_GRDM_1SSH_20181103T235855_20181103T235955_024430_02AD5D_5616",
"type": "Feature",
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [
"checksum"
],
Expand Down
4 changes: 2 additions & 2 deletions extensions/checksum/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://schemas.stacspec.org/dev/extensions/checksum/json-schema/schema.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-beta.2/extensions/checksum/json-schema/schema.json#",
"title": "Checksum Extension Specification",
"description": "STAC Checksum Extension to a STAC Item",
"oneOf": [
Expand Down Expand Up @@ -62,7 +62,7 @@
"contains": {
"enum": [
"checksum",
"https://schemas.stacspec.org/dev/extensions/checksum/json-schema/schema.json"
"https://schemas.stacspec.org/v1.0.0-beta.2/extensions/checksum/json-schema/schema.json"
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion extensions/collection-assets/examples/example-esm.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [
"collection-assets",
"https://github.com/NCAR/esm-collection-spec/tree/v0.2.0/schema.json"
Expand Down
4 changes: 2 additions & 2 deletions extensions/collection-assets/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://schemas.stacspec.org/dev/extensions/collection-assets/json-schema/schema.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-beta.2/extensions/collection-assets/json-schema/schema.json#",
"title": "Collection Assets Extension Specification",
"description": "STAC Collection-level assets Extension to a STAC Collection",
"allOf": [
Expand All @@ -19,7 +19,7 @@
"contains": {
"enum": [
"collection-assets",
"https://schemas.stacspec.org/dev/extensions/collection-assets/json-schema/schema.json"
"https://schemas.stacspec.org/v1.0.0-beta.2/extensions/collection-assets/json-schema/schema.json"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion extensions/datacube/examples/example-collection.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [
"datacube"
],
Expand Down
2 changes: 1 addition & 1 deletion extensions/datacube/examples/example-item.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [
"datacube"
],
Expand Down
4 changes: 2 additions & 2 deletions extensions/datacube/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://schemas.stacspec.org/dev/extensions/datacube/json-schema/schema.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-beta.2/extensions/datacube/json-schema/schema.json#",
"title": "Data Cube Extension",
"description": "STAC Data Cube Extension to STAC Items and STAC Collections",
"oneOf": [
Expand Down Expand Up @@ -51,7 +51,7 @@
"contains": {
"enum": [
"datacube",
"https://schemas.stacspec.org/dev/extensions/datacube/json-schema/schema.json"
"https://schemas.stacspec.org/v1.0.0-beta.2/extensions/datacube/json-schema/schema.json"
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion extensions/eo/examples/example-landsat8.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [
"eo",
"view",
Expand Down
4 changes: 2 additions & 2 deletions extensions/eo/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://schemas.stacspec.org/dev/extensions/eo/json-schema/schema.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json#",
"title": "EO Extension",
"description": "STAC EO Extension to a STAC Item.",
"allOf": [
Expand All @@ -25,7 +25,7 @@
"contains": {
"enum": [
"eo",
"https://schemas.stacspec.org/dev/extensions/eo/json-schema/schema.json"
"https://schemas.stacspec.org/v1.0.0-beta.2/extensions/eo/json-schema/schema.json"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion extensions/item-assets/examples/example-landsat8.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"earth observation",
"usgs"
],
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [
"item-assets"
],
Expand Down
4 changes: 2 additions & 2 deletions extensions/item-assets/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://schemas.stacspec.org/dev/extensions/item-assets/json-schema/schema.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-beta.2/extensions/item-assets/json-schema/schema.json#",
"title": "Asset Definition Extension Specification",
"description": "STAC Asset Definition Extension to a STAC Collection",
"allOf": [
Expand All @@ -25,7 +25,7 @@
"contains": {
"enum": [
"item-assets",
"https://schemas.stacspec.org/dev/extensions/item-assets/json-schema/schema.json"
"https://schemas.stacspec.org/v1.0.0-beta.2/extensions/item-assets/json-schema/schema.json"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion extensions/label/examples/multidataset/catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "label_extension_demo",
"title": "label extension demo",
"description": "Sample ML training data labels in the STAC format",
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"links":
[
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [
"label",
"version"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [
"label",
"version"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [
"label",
"version"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"id": "spacenet-buildings-collection",
"title": "spacenet-buildings AoI",
"description": "Collection of training labels for spacenet-buildings",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"id": "zanzibar-collection",
"title": "zanzibar AoI",
"description": "Collection of training labels for zanzibar",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [
"label",
"version"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [
"label",
"version"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"id": "spacenet-roads-sample",
"description": "A sample of the SpaceNet Roads dataset built during STAC Sprint 4. The dataset contains hand-labeled roads.",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion extensions/label/examples/spacenet-roads/roads_item.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [
"label",
"version"
Expand Down
2 changes: 1 addition & 1 deletion extensions/label/examples/spacenet-roads/roads_source.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [],
"type": "Feature",
"bbox": [2.23379639995, 49.0178709, 2.23730639995, 49.0213809],
Expand Down
4 changes: 2 additions & 2 deletions extensions/label/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://schemas.stacspec.org/dev/extensions/label/json-schema/schema.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-beta.2/extensions/label/json-schema/schema.json#",
"title": "Label Extension",
"description": "STAC Label Data Item Extension Spec",
"allOf": [
Expand All @@ -24,7 +24,7 @@
"contains": {
"enum": [
"label",
"https://schemas.stacspec.org/dev/extensions/label/json-schema/schema.json"
"https://schemas.stacspec.org/v1.0.0-beta.2/extensions/label/json-schema/schema.json"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion extensions/pointcloud/examples/example-autzen.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [
"pointcloud"
],
Expand Down
4 changes: 2 additions & 2 deletions extensions/pointcloud/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://schemas.stacspec.org/dev/extensions/pointcloud/json-schema/schema.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-beta.2/extensions/pointcloud/json-schema/schema.json#",
"title": "Point Cloud Extension",
"description": "STAC Point Cloud Extension to a STAC Item",
"allOf": [
Expand All @@ -24,7 +24,7 @@
"contains": {
"enum": [
"pointcloud",
"https://schemas.stacspec.org/dev/extensions/pointcloud/json-schema/schema.json"
"https://schemas.stacspec.org/v1.0.0-beta.2/extensions/pointcloud/json-schema/schema.json"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion extensions/projection/examples/example-landsat8.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [
"eo",
"projection"
Expand Down
4 changes: 2 additions & 2 deletions extensions/projection/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://schemas.stacspec.org/dev/extensions/projection/json-schema/schema.json#",
"$id":"https://schemas.stacspec.org/v1.0.0-beta.2/extensions/projection/json-schema/schema.json#",
"title":"Projection Extension",
"description":"STAC Projection Extension to a STAC Item",
"allOf":[
Expand All @@ -24,7 +24,7 @@
"contains": {
"enum": [
"projection",
"https://schemas.stacspec.org/dev/extensions/projection/json-schema/schema.json"
"https://schemas.stacspec.org/v1.0.0-beta.2/extensions/projection/json-schema/schema.json"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion extensions/sar/examples/envisat.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [
"sat",
"sar"
Expand Down
2 changes: 1 addition & 1 deletion extensions/sar/examples/sentinel1.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stac_version": "1.0.0-beta.1",
"stac_version": "1.0.0-beta.2",
"stac_extensions": [
"checksum",
"sar",
Expand Down
4 changes: 2 additions & 2 deletions extensions/sar/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://schemas.stacspec.org/dev/extensions/sar/json-schema/schema.json#",
"$id": "https://schemas.stacspec.org/v1.0.0-beta.2/extensions/sar/json-schema/schema.json#",
"title": "SAR Extension",
"description": "STAC SAR Extension to a STAC Item",
"allOf": [
Expand All @@ -25,7 +25,7 @@
"contains": {
"enum": [
"sar",
"https://schemas.stacspec.org/dev/extensions/sar/json-schema/schema.json"
"https://schemas.stacspec.org/v1.0.0-beta.2/extensions/sar/json-schema/schema.json"
]
}
},
Expand Down
Loading

0 comments on commit 5b556f8

Please sign in to comment.