Skip to content

Commit 5bec245

Browse files
Merge pull request #19 from stac-extensions/release-1.1.0
Release v1.1.0
2 parents 3f2043e + 32fa2e5 commit 5bec245

File tree

6 files changed

+12
-13
lines changed

6 files changed

+12
-13
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [v1.1.0] - 2022-01-07
10+
911
### Added
1012

1113
- `processing:expression` to describe how the data has been processed.
@@ -15,10 +17,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1517

1618
- Updated examples to STAC 1.0.0
1719

18-
### Deprecated
19-
20-
### Removed
21-
2220
### Fixed
2321

2422
- The JSON Schema is more strict and should not have issues with missing required fields in Collections any longer [#3](https://github.com/stac-extensions/processing/issues/3), [#8](https://github.com/stac-extensions/processing/issues/8), [#16](https://github.com/stac-extensions/processing/issues/16)
@@ -31,5 +29,6 @@ Initial independent release, see [previous history](https://github.com/radiantea
3129

3230
- `processing:lineage` now allows CommonMark for rich-text representation ([#950](https://github.com/radiantearth/stac-spec/issues/950))
3331

34-
[Unreleased]: <https://github.com/stac-extensions/processing/compare/v1.0.0...HEAD>
32+
[Unreleased]: <https://github.com/stac-extensions/processing/compare/v1.1.0...HEAD>
33+
[v1.1.0]: <https://github.com/stac-extensions/processing/compare/v1.1.0...v1.0.0>
3534
[v1.0.0]: <https://github.com/stac-extensions/processing/tree/v1.0.0>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Processing Extension Specification
22

33
- **Title:** Processing
4-
- **Identifier:** <https://stac-extensions.github.io/processing/v1.0.0/schema.json>
4+
- **Identifier:** <https://stac-extensions.github.io/processing/v1.1.0/schema.json>
55
- **Field Name Prefix:** processing
66
- **Scope:** Item, Collection
77
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Proposal
@@ -86,7 +86,7 @@ Potential expression formats with examples:
8686
| Format | Type | Description | Example |
8787
| ----------- | ------ | ----------- | ------- |
8888
| `gdal-calc` | string | A [`gdal_calc.py`](https://gdal.org/programs/gdal_calc.html) expression based on numpy syntax. | `A*logical_or(A<=177,A>=185)` |
89-
| `openeo` | object | [openEO process](https://openeo.org/documentation/1.0/developers/api/reference.html#section/Processes) | [Example](https://raw.githubusercontent.com/Open-EO/openeo-processes/1.0.0/normalized_difference.json) |
89+
| `openeo` | object | [openEO process](https://openeo.org/documentation/1.0/developers/api/reference.html#section/Processes) | [Example](https://raw.githubusercontent.com/Open-EO/openeo-processes/1.2.0/normalized_difference.json) |
9090
| `rio-calc` | string | A [rio-calc](https://rasterio.readthedocs.io/en/latest/topics/calc.html) (RasterIO) expression | `(b4-b1)/(b4+b1)` |
9191

9292
## Relation types

examples/collection.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"stac_version": "1.0.0",
33
"stac_extensions": [
4-
"https://stac-extensions.github.io/processing/v1.0.0/schema.json"
4+
"https://stac-extensions.github.io/processing/v1.1.0/schema.json"
55
],
66
"type": "Collection",
77
"id": "Sentinel2-L2A",

examples/item.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"stac_extensions": [
44
"https://stac-extensions.github.io/sat/v1.0.0/schema.json",
55
"https://stac-extensions.github.io/sar/v1.0.0/schema.json",
6-
"https://stac-extensions.github.io/processing/v1.0.0/schema.json"
6+
"https://stac-extensions.github.io/processing/v1.1.0/schema.json"
77
],
88
"id": "S1A_IW_GRDH_1SDV_20160822T182823_20160822T182848_012717_013FFE_90AF",
99
"properties": {

json-schema/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
"stac_extensions": {
179179
"type": "array",
180180
"contains": {
181-
"const": "https://stac-extensions.github.io/processing/v1.0.0/schema.json"
181+
"const": "https://stac-extensions.github.io/processing/v1.1.0/schema.json"
182182
}
183183
}
184184
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "stac-extensions",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"scripts": {
55
"test": "npm run check-markdown && npm run check-examples",
66
"check-markdown": "remark . -f -r .github/remark.yaml",
7-
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/processing/v1.0.0/schema.json=./json-schema/schema.json",
8-
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/processing/v1.0.0/schema.json=./json-schema/schema.json"
7+
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/processing/v1.1.0/schema.json=./json-schema/schema.json",
8+
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/processing/v1.1.0/schema.json=./json-schema/schema.json"
99
},
1010
"dependencies": {
1111
"remark-cli": "^8.0.0",

0 commit comments

Comments
 (0)