Skip to content

Commit

Permalink
Change type of example collection to 'Collection'
Browse files Browse the repository at this point in the history
The STAC API states that collections must have a 'type' of 'Collection', but the example data had a collection with a type of 'collection' which caused various other tools to fail when processing this collection (see stac-utils/pystac-client#129)
  • Loading branch information
robintw authored Jan 6, 2022
1 parent a1e32cb commit 14eaca7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stac_fastapi/testdata/joplin/collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"title": "public domain"
}
],
"type": "collection",
"type": "Collection",
"extent": {
"spatial": {
"bbox": [
Expand All @@ -31,4 +31,4 @@
]
}
}
}
}

0 comments on commit 14eaca7

Please sign in to comment.