Skip to content

Commit

Permalink
restore defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
nkleinbaer committed Feb 5, 2024
1 parent 6039a3a commit 3c7b581
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@ def db_to_stac(cls, collection: dict, base_url: str) -> stac_types.Collection:
collection_id = collection.get("id")
collection.setdefault("type", "Collection")
collection.setdefault("stac_extensions", [])
collection.setdefault("stac_version", "1.0.0")
collection.setdefault("title", collection_id)
collection.setdefault("description", collection_id)
collection.setdefault("stac_version", "")
collection.setdefault("title", "")
collection.setdefault("description", "")
collection.setdefault("keywords", [])
collection.setdefault("license", "proprietary")
collection.setdefault("license", "")
collection.setdefault("providers", [])
collection.setdefault("summaries", {})
collection.setdefault(
Expand Down

0 comments on commit 3c7b581

Please sign in to comment.