Skip to content

Commit b2a2535

Browse files
committed
STAC 1.1 updates #29, update version numbers
1 parent ebd9c99 commit b2a2535

File tree

5 files changed

+220
-103
lines changed

5 files changed

+220
-103
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A minimal STAC library that contains a list of STAC fields with some metadata (title, unit, prefix) and helper functions for styling as HTML.
44

5-
Version: **1.3.1**
5+
Version: **1.5.0-beta.1**
66

77
## Usage
88

demo/item.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"stac_version": "1.0.0",
2+
"stac_version": "1.1.0-beta.1",
33
"stac_extensions": [
4-
"https://stac-extensions.github.io/eo/v1.1.0/schema.json",
4+
"https://stac-extensions.github.io/eo/v2.0.0-beta.1/schema.json",
55
"https://stac-extensions.github.io/language/v1.0.0/schema.json",
6-
"https://stac-extensions.github.io/file/v1.0.0/schema.json",
6+
"https://stac-extensions.github.io/file/v2.1.0/schema.json",
77
"https://stac-extensions.github.io/view/v1.0.0/schema.json",
88
"https://stac-extensions.github.io/contacts/v0.1.1/schema.json",
99
"https://stac-extensions.github.io/themes/v1.0.0/schema.json",
@@ -65,9 +65,9 @@
6565
},
6666
"proj:code": "EPSG:4326",
6767
"file:checksum": "1114a94a8fe5ccb19ba61c4c0873d391e987982fbbd3",
68-
"file:data_type": "uint16",
68+
"data_type": "uint16",
6969
"file:size": 2048,
70-
"file:nodata": [0, 255],
70+
"nodata": 0,
7171
"file:values": [
7272
{
7373
"values": [1, 2],
@@ -257,38 +257,38 @@
257257
"href": "https://landsat-pds.s3.amazonaws.com/c1/L8/107/018/LC08_L1TP_107018_20181001_20181001_01_RT/LC08_L1TP_107018_20181001_20181001_01_RT_B1.TIF",
258258
"type": "image/tiff; application=geotiff",
259259
"title": "Band 1 (coastal)",
260-
"eo:bands": [
260+
"bands": [
261261
{
262262
"name": "B1",
263-
"common_name": "coastal",
264-
"center_wavelength": 0.44,
265-
"full_width_half_max": 0.02
263+
"eo:common_name": "coastal",
264+
"eo:center_wavelength": 0.44,
265+
"eo:full_width_half_max": 0.02
266266
}
267267
]
268268
},
269269
"B2": {
270270
"href": "https://landsat-pds.s3.amazonaws.com/c1/L8/107/018/LC08_L1TP_107018_20181001_20181001_01_RT/LC08_L1TP_107018_20181001_20181001_01_RT_B2.TIF",
271271
"type": "image/tiff; application=geotiff",
272272
"title": "Band 2 (blue)",
273-
"eo:bands": [
273+
"bands": [
274274
{
275275
"name": "B2",
276-
"common_name": "blue",
277-
"center_wavelength": 0.48,
278-
"full_width_half_max": 0.06
276+
"eo:common_name": "blue",
277+
"eo:center_wavelength": 0.48,
278+
"eo:full_width_half_max": 0.06
279279
}
280280
]
281281
},
282282
"B3": {
283283
"href": "https://landsat-pds.s3.amazonaws.com/c1/L8/107/018/LC08_L1TP_107018_20181001_20181001_01_RT/LC08_L1TP_107018_20181001_20181001_01_RT_B3.TIF",
284284
"type": "image/tiff; application=geotiff",
285285
"title": "Band 3 (green)",
286-
"eo:bands": [
286+
"bands": [
287287
{
288288
"name": "B3",
289-
"common_name": "green",
290-
"center_wavelength": 0.56,
291-
"full_width_half_max": 0.06
289+
"eo:common_name": "green",
290+
"eo:center_wavelength": 0.56,
291+
"eo:full_width_half_max": 0.06
292292
}
293293
]
294294
}

0 commit comments

Comments
 (0)