Skip to content
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

Adding service information for the STAC catalog #373

Merged
merged 14 commits into from
Oct 2, 2023
4 changes: 3 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
[Unreleased](https://github.com/bird-house/birdhouse-deploy/tree/master) (latest)
------------------------------------------------------------------------------------------------------------------

[//]: # (list changes here, using '-' for each new entry, remove this when items are added)
## CHANGES

- Adding a description for the STAC service that will be served at the `/services` endpoint
dchandan marked this conversation as resolved.
Show resolved Hide resolved

[1.29.1](https://github.com/bird-house/birdhouse-deploy/tree/1.29.1) (2023-08-15)
------------------------------------------------------------------------------------------------------------------
Expand Down
20 changes: 20 additions & 0 deletions birdhouse/components/stac-browser/service-config.json.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "https://raw.githubusercontent.com/DACCS-Climate/Marble-node-registry/main/node_registry.schema.json#service",
"name": "stac-browser",
"keywords": [
"catalog"
],
"description": "A web interface to browse the STAC catalog of the Marble Network.",
dchandan marked this conversation as resolved.
Show resolved Hide resolved
"links": [
{
"rel": "service",
"type": "text/html",
"href": "https://${PAVICS_FQDN_PUBLIC}/stac-browser/"
},
{
"rel": "service-doc",
"type": "text/html",
"href": "https://github.com/radiantearth/stac-browser"
}
]
}
20 changes: 20 additions & 0 deletions birdhouse/components/stac/service-config.json.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "https://raw.githubusercontent.com/DACCS-Climate/Marble-node-registry/main/node_registry.schema.json#service",
"name": "stac",
"keywords": [
"catalog"
],
"description": "STAC catalog for discovering data on the Marble Network.",
dchandan marked this conversation as resolved.
Show resolved Hide resolved
"links": [
{
"rel": "service",
"type": "text/html",
dchandan marked this conversation as resolved.
Show resolved Hide resolved
"href": "https://${PAVICS_FQDN_PUBLIC}/stac/"
},
{
"rel": "service-doc",
"type": "text/html",
"href": "https://stacspec.org/en"
dchandan marked this conversation as resolved.
Show resolved Hide resolved
}
]
}
Loading