Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

- Change default temporal property to datetime
- Enable Converter.columns list and tuple types
- Update STAC processing extension

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

Expand Down
2 changes: 1 addition & 1 deletion tests/data-files/stac/collection-de-sh-json.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"stac_version": "1.1.0",
"stac_extensions": [
"https://stac-extensions.github.io/processing/v1.1.0/schema.json"
"https://stac-extensions.github.io/processing/v1.2.0/schema.json"
],
"type": "Collection",
"id": "de_sh",
Expand Down
2 changes: 1 addition & 1 deletion tests/data-files/stac/collection-de-sh-parquet.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"stac_version": "1.1.0",
"stac_extensions": [
"https://stac-extensions.github.io/processing/v1.1.0/schema.json",
"https://stac-extensions.github.io/processing/v1.2.0/schema.json",
"https://stac-extensions.github.io/table/v1.2.0/schema.json"
],
"type": "Collection",
Expand Down
2 changes: 1 addition & 1 deletion tests/data-files/stac/collection-fiboa.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"stac_version": "1.1.0",
"stac_extensions": [
"https://stac-extensions.github.io/processing/v1.1.0/schema.json"
"https://stac-extensions.github.io/processing/v1.2.0/schema.json"
],
"type": "Collection",
"id": "de_nrw",
Expand Down
4 changes: 2 additions & 2 deletions vecorel_cli/create_stac.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class CreateStacCollection(BaseCommand):
cmd_help = f"Creates a STAC Collection for {Registry.project} files."
cmd_final_report = True

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

temporal_property = "datetime"
Expand Down Expand Up @@ -119,7 +119,7 @@ def create(
temporal_property: Optional[str] = None,
) -> dict:
"""
Creates a collection for the field boundary datasets.
Creates a collection for the datasets.
"""
if len(gdf) == 0:
raise Exception("No data available.")
Expand Down
Loading