Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Jun 22, 2023
1 parent 7a6bab4 commit 7075dc9
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 9 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

## [1.1.0]

### Added

- OGC WMS (Basic WMS only)
- 3D Tiles

### Changed

- The JSON schema for `wmts:layer` is less ambiguous and a bit more strict

## [1.0.0]

- Initial release for TileJSON, WMTS and XYZ.

[Unreleased]: <https://github.com/stac-extensions/web-map-links/compare/v1.0.0...HEAD>
[Unreleased]: <https://github.com/stac-extensions/web-map-links/compare/v1.1.0...HEAD>
[1.1.0]: <https://github.com/stac-extensions/web-map-links/compare/v1.0.0...v1.1.0>
[1.0.0]: <https://github.com/stac-extensions/web-map-links/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 @@
# Web Map Links Extension Specification

- **Title:** Web Map Links
- **Identifier:** <https://stac-extensions.github.io/web-map-links/v1.0.0/schema.json>
- **Identifier:** <https://stac-extensions.github.io/web-map-links/v1.1.0/schema.json>
- **Field Name Prefix:** none, but each relation type has potentially a distinct prefix for additional data (e.g. `wmts` and `xyz`)
- **Scope:** Item, Catalog, Collection
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Proposal
Expand Down
2 changes: 1 addition & 1 deletion examples/collection.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/web-map-links/v1.0.0/schema.json"
"https://stac-extensions.github.io/web-map-links/v1.1.0/schema.json"
],
"type": "Collection",
"id": "collection",
Expand Down
2 changes: 1 addition & 1 deletion examples/item.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/web-map-links/v1.0.0/schema.json"
"https://stac-extensions.github.io/web-map-links/v1.1.0/schema.json"
],
"type": "Feature",
"id": "item",
Expand Down
5 changes: 3 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/web-map-links/v1.0.0/schema.json#",
"$id": "https://stac-extensions.github.io/web-map-links/v1.1.0/schema.json#",
"title": "Web Map Links Extension",
"description": "STAC Web Map Links Extension for STAC Items, STAC Catalogs and STAC Collections.",
"type": "object",
Expand All @@ -13,7 +13,7 @@
"stac_extensions": {
"type": "array",
"contains": {
"const": "https://stac-extensions.github.io/web-map-links/v1.0.0/schema.json"
"const": "https://stac-extensions.github.io/web-map-links/v1.1.0/schema.json"
}
},
"type": {
Expand All @@ -35,6 +35,7 @@
"rel": {
"enum": [
"xyz",
"wms",
"wmts",
"tilejson",
"3d-tiles"
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-extensions",
"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/web-map-links/v1.0.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/web-map-links/v1.0.0/schema.json=./json-schema/schema.json"
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/web-map-links/v1.1.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/web-map-links/v1.1.0/schema.json=./json-schema/schema.json"
},
"dependencies": {
"remark-cli": "^8.0.0",
Expand Down

0 comments on commit 7075dc9

Please sign in to comment.