Skip to content

Commit

Permalink
v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Oct 25, 2022
1 parent 5a40918 commit 8f56fca
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 150 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

[Unreleased]: <https://github.com/stac-extensions/forecast/compare/v1.0.0...HEAD>
[0.1.0]

- First release

[Unreleased]: <https://github.com/stac-extensions/forecast/compare/v0.1.0...HEAD>
[0.1.0]: <https://github.com/stac-extensions/forecast/tree/v0.1.0>
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Forecast Extension Specification

- **Title:** Forecast
- **Identifier:** <https://stac-extensions.github.io/forecast/v1.0.0/schema.json>
- **Identifier:** <https://stac-extensions.github.io/forecast/v0.1.0/schema.json>
- **Field Name Prefix:** forecast
- **Scope:** Item, Collection
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Proposal
Expand All @@ -13,8 +13,6 @@ Some fields may also be applicable for climate forecast data, but it hasn't been

- Examples:
- [Item example for an specific time](examples/item.json): An example STAC Item for a forecast covering a specific instance in time
- [Item example for a period](examples/item-period.json): An example STAC Item for a forecast covering a period of time (todo)
- [Collection example](examples/collection.json): Shows the usage of the extension in a STAC Collection (todo)
- [JSON Schema](json-schema/schema.json)
- [Changelog](./CHANGELOG.md)

Expand Down
73 changes: 0 additions & 73 deletions examples/collection.json

This file was deleted.

67 changes: 0 additions & 67 deletions examples/item-period.json

This file was deleted.

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/forecast/v1.0.0/schema.json#",
"$id": "https://stac-extensions.github.io/forecast/v0.1.0/schema.json#",
"title": "Forecast Extension",
"description": "STAC Forecast Extension for STAC Items and STAC Collections.",
"oneOf": [
Expand Down Expand Up @@ -146,7 +146,7 @@
"stac_extensions": {
"type": "array",
"contains": {
"const": "https://stac-extensions.github.io/forecast/v1.0.0/schema.json"
"const": "https://stac-extensions.github.io/forecast/v0.1.0/schema.json"
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "stac-extensions",
"version": "1.0.0",
"name": "forecast",
"version": "0.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/forecast/v1.0.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/forecast/v1.0.0/schema.json=./json-schema/schema.json"
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/forecast/v0.1.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/forecast/v0.1.0/schema.json=./json-schema/schema.json"
},
"dependencies": {
"remark-cli": "^8.0.0",
Expand Down

0 comments on commit 8f56fca

Please sign in to comment.