Skip to content

Commit e24ddb0

Browse files
Merge pull request #20 from stac-extensions/V1.1.0
v1.1.0
2 parents 77c160d + 8c5de10 commit e24ddb0

File tree

6 files changed

+21
-23
lines changed

6 files changed

+21
-23
lines changed

CHANGELOG.md

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,15 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [v1.1.0]
88

99
### Added
1010

1111
- Allow "inf" and "nan" as valid nodata values [#18](https://github.com/stac-extensions/raster/issues/18)
1212

13-
### Changed
14-
15-
### Deprecated
16-
17-
### Removed
18-
19-
### Fixed
20-
21-
## [V1.0.0]
13+
## [v1.0.0]
2214

2315
- Initial release
2416

25-
[Unreleased]: <https://github.com/stac-extensions/raster/compare/v1.0.0...HEAD>
17+
[v1.1.0]: <https://github.com/stac-extensions/tree/v1.1.0>
2618
[v1.0.0]: <https://github.com/stac-extensions/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
# Raster Extension Specification
22

33
- **Title:** Raster
4-
- **Identifier:** <https://stac-extensions.github.io/raster/v1.0.0/schema.json>
4+
- **Identifier:** <https://stac-extensions.github.io/raster/v1.1.0/schema.json>
55
- **Field Name Prefix:** raster
66
- **Scope:** Item, Collection
77
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Proposal
@@ -35,7 +35,7 @@ to specify information about the raster projection, especially `proj:shape` to s
3535

3636
| Field Name | Type | Description |
3737
| ------------------ | --------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
38-
| nodata | number | string | Pixel values used to identify pixels that are nodata in the band either by the pixel value as a number or `nan`, `inf` or `-inf`. |
38+
| nodata | number | string | Pixel values used to identify pixels that are nodata in the band either by the pixel value as a number or `nan`, `inf` or `-inf`. |
3939
| sampling | string | One of `area` or `point`. Indicates whether a pixel value should be assumed to represent a sampling over the region of the pixel or a point sample at the center of the pixel. |
4040
| data_type | string | The data type of the pixels in the band. One of the [data types as described above](#data-types). |
4141
| bits_per_sample | number | The actual number of bits used for this band. Normally only present when the number of bits is non-standard for the `datatype`, such as when a 1 bit TIFF is represented as byte |

examples/item-planet.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"https://stac-extensions.github.io/projection/v1.0.0/schema.json",
66
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
77
"https://stac-extensions.github.io/processing/v1.0.0/schema.json",
8-
"https://stac-extensions.github.io/raster/v1.0.0/schema.json"
8+
"https://stac-extensions.github.io/raster/v1.1.0/schema.json"
99
],
10-
"stac_version": "1.0.0-rc.2",
10+
"stac_version": "1.0.0",
1111
"links": [],
1212
"assets": {
1313
"data": {

examples/item-sentinel2.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"type": "Feature",
3-
"stac_version": "1.0.0-rc.2",
3+
"stac_version": "1.0.0",
44
"stac_extensions": [
55
"https://stac-extensions.github.io/eo/v1.0.0/schema.json",
66
"https://stac-extensions.github.io/view/v1.0.0/schema.json",
77
"https://stac-extensions.github.io/projection/v1.0.0/schema.json",
8-
"https://stac-extensions.github.io/raster/v1.0.0/schema.json"
8+
"https://stac-extensions.github.io/raster/v1.1.0/schema.json"
99
],
1010
"id": "S2B_33SVB_20210221_0_L2A",
1111
"bbox": [
@@ -734,5 +734,11 @@
734734
]
735735
}
736736
},
737-
"links": []
737+
"links": [
738+
{
739+
"type": "application/json",
740+
"rel": "collection",
741+
"href": "sentinel-s2-l2a-cogs.json"
742+
}
743+
]
738744
}

json-schema/schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://stac-extensions.github.io/raster/v1.0.0/schema.json#",
3+
"$id": "https://stac-extensions.github.io/raster/v1.1.0/schema.json#",
44
"title": "raster Extension",
55
"description": "STAC Raster Extension for STAC Items.",
66
"oneOf": [
@@ -69,7 +69,7 @@
6969
"stac_extensions": {
7070
"type": "array",
7171
"contains": {
72-
"const": "https://stac-extensions.github.io/raster/v1.0.0/schema.json"
72+
"const": "https://stac-extensions.github.io/raster/v1.1.0/schema.json"
7373
}
7474
}
7575
}

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/raster/v1.0.0/schema.json=./json-schema/schema.json",
8-
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/raster/v1.0.0/schema.json=./json-schema/schema.json"
7+
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/raster/v1.1.0/schema.json=./json-schema/schema.json",
8+
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/raster/v1.1.0/schema.json=./json-schema/schema.json"
99
},
1010
"dependencies": {
1111
"remark-cli": "^8.0.0",

0 commit comments

Comments
 (0)