We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I've found the index of STAC collections here: https://collections.eurodatacube.com/stac/index.json Unfortunately it is not a valid STAC catalog and can therefore not be browsed with tools like STAC Browser.
A valid STAC catalog can be created with minimal effort, e.g.:
{ "type": "Catalog", "stac_version": "1.0.0", "id": "eurodatacube-collections-catalog", "description": "A STAC catalog that contains all collections available on EuroDataCube.", "links": [ { "href": "https://collections.eurodatacube.com/stac/index.json", "rel": "self" }, { "href": "https://collections.eurodatacube.com/stac/index.json", "rel": "root" }, { "id": "SENTINEL2_L2A_MOSAIC_120", "href": "https://collections.eurodatacube.com/stac/sentinel-s2-l2a-mosaic-120.json", "rel": "child" }, ... ] }
I think the relevant change would have to be made to this file:
public-collections/_build/stacIndex.hbs
Lines 1 to 5 in 2f16a10
Something along the lines of:
{ "type": "Catalog", "stac_version": "1.0.0", "id": "eurodatacube-collections-catalog", "description": "A STAC catalog that contains all collections available on EuroDataCube.", "links": [ { "href": "{{rootUrl}}stac/index.json", "rel": "self" }, { "href": "{{rootUrl}}stac/index.json", "rel": "root" }, {{#each datasets}} {"id": "{{OpenEOPID}}", "rel": "child", "href": "{{rootUrl}}stac/{{Slug}}.json"}{{#unless @last}},{{/unless}} {{/each}} ] }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I've found the index of STAC collections here: https://collections.eurodatacube.com/stac/index.json Unfortunately it is not a valid STAC catalog and can therefore not be browsed with tools like STAC Browser.
A valid STAC catalog can be created with minimal effort, e.g.:
I think the relevant change would have to be made to this file:
public-collections/_build/stacIndex.hbs
Lines 1 to 5 in 2f16a10
Something along the lines of:
The text was updated successfully, but these errors were encountered: