Skip to content

Commit b4d01c1

Browse files
ivorbosloperm-mohr
andauthored
Update processing extension version (#15)
* Update processing extension version * Fix tests + CHANGELOG --------- Co-authored-by: Matthias Mohr <webmaster@mamo-net.de>
1 parent 7ab32b2 commit b4d01c1

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
99

1010
- Change default temporal property to datetime
1111
- Enable Converter.columns list and tuple types
12+
- Update STAC processing extension
1213

1314
## [v0.2.11] - 2025-10-09
1415

tests/data-files/stac/collection-de-sh-json.json

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

tests/data-files/stac/collection-de-sh-parquet.json

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

tests/data-files/stac/collection-fiboa.json

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

vecorel_cli/create_stac.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class CreateStacCollection(BaseCommand):
2222
cmd_help = f"Creates a STAC Collection for {Registry.project} files."
2323
cmd_final_report = True
2424

25-
processing_extension = "https://stac-extensions.github.io/processing/v1.1.0/schema.json"
25+
processing_extension = "https://stac-extensions.github.io/processing/v1.2.0/schema.json"
2626
table_extension = "https://stac-extensions.github.io/table/v1.2.0/schema.json"
2727

2828
temporal_property = "datetime"
@@ -119,7 +119,7 @@ def create(
119119
temporal_property: Optional[str] = None,
120120
) -> dict:
121121
"""
122-
Creates a collection for the field boundary datasets.
122+
Creates a collection for the datasets.
123123
"""
124124
if len(gdf) == 0:
125125
raise Exception("No data available.")

0 commit comments

Comments
 (0)