-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include the collection in the geoparquet metadata #428
Labels
[crate] core
stac
Comments
It should probably be a collections array field rather than singular to accommodate geoparquet that may have Items from multiple collections. |
I see two use cases here --
It would seem to me that we would want to update the spec to accommodate both. |
🤔 I think my instinct is to make {
"collections": {
"collection-a": { ... },
"collection-b": { ... }
},
"items": [
{ "id": "item-a", "collection": "collection-a", ... },
{ "id": "item-b", "collection": "collection-b", ... }
]
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/stac-utils/stac-geoparquet/blob/main/spec/stac-geoparquet-spec.md#including-a-stac-collection-json-in-a-stac-geoparquet-collection
I think we'd support this on the way in either by:
Way out would be similar-ish, where if we didn't do it on an item collection we'd just hit the parquet file twice, which seems bad.
Probably just add a
collection
field to anItemCollection
, eh?The text was updated successfully, but these errors were encountered: