-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding service information for the STAC catalog (#373)
## Overview STAC is a new service to the birdhouse-stack and it should be made visible at the `/services` endpoint. Currently this is missing. ## Changes **Non-breaking changes** - Adding a `service-config.json.template` file to `birdhouse/components/stac`. **Breaking changes** N/A
- Loading branch information
Showing
10 changed files
with
96 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.33.4 2023-10-02T13:49:23Z | ||
1.33.5 2023-10-02T15:13:02Z |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
config/magpie/config.yml | ||
config/proxy/conf.extra-service.d/stac.conf | ||
config/canarie-api/canarie_api_monitoring.py | ||
service-config.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/DACCS-Climate/Marble-node-registry/main/node_registry.schema.json#service", | ||
"name": "stac", | ||
"keywords": [ | ||
"catalog" | ||
], | ||
"description": "Searchable spatiotemporal metadata describing climate and Earth observation datasets.", | ||
"links": [ | ||
{ | ||
"rel": "service", | ||
"type": "application/json", | ||
"href": "https://${PAVICS_FQDN_PUBLIC}/stac/" | ||
}, | ||
{ | ||
"rel": "service-doc", | ||
"type": "text/html", | ||
"href": "https://github.com/radiantearth/stac-api-spec/tree/v1.0.0" | ||
}, | ||
{ | ||
"rel": "service-desc", | ||
"type": "application/yaml", | ||
"href": "https://raw.githubusercontent.com/radiantearth/stac-api-spec/main/core/openapi.yaml" | ||
}, | ||
{ | ||
"rel": "alternate", | ||
"type": "text/html", | ||
"href": "https://${PAVICS_FQDN_PUBLIC}/stac-browser/" | ||
} | ||
] | ||
}, { | ||
"$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 catalogs.", | ||
"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" | ||
}, | ||
{ | ||
"rel": "alternate", | ||
"type": "application/json", | ||
"href": "https://${PAVICS_FQDN_PUBLIC}/stac/" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters