Skip to content

Commit

Permalink
Improve examples
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Apr 27, 2024
1 parent 3ed3c6e commit e4e5a0e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ It allows adding details related to cloud object storage access and costs to be
This extension does not cover NFS solutions provided by PaaS cloud companies.

- Examples:
- [NAIP Item](examples/item-naip.json): Shows the usage of the extension in combination with the alternate asset extension.
- [NSL Item](examples/item-nsl.json): Shows a mixture of storage providers, including custom S3 hosts.
- [Catalog with Link](examples/catalog-link.json): Shows the usage of the extension on a link in a STAC Catalog.
- [NAIP Item](examples/item-naip.json): Shows a mixture of storage providers, including custom S3 hosts.
- [NSL Item](examples/item-nsl.json): Shows the usage of the extension in combination with the alternate asset extension.
- [Catalog with Link](examples/catalog-link.json): Shows the usage of the extension on a link in a STAC Catalog and in combination with the authentication extension.
- [JSON Schema](json-schema/schema.json)
- [Changelog](./CHANGELOG.md)

Expand Down
11 changes: 10 additions & 1 deletion examples/catalog-link.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/storage/v2.0.0/schema.json"
"https://stac-extensions.github.io/storage/v2.0.0/schema.json",
"https://stac-extensions.github.io/authentication/v1.0.0/schema.json"
],
"type": "Catalog",
"id": "20190822T183518Z_746_POM1_ST2_P",
Expand All @@ -15,6 +16,11 @@
"tier": "Standard"
}
},
"auth:schemes": {
"aws": {
"type": "s3"
}
},
"links": [
{
"href": "https://example.com/examples/catalog-link.json",
Expand All @@ -27,6 +33,9 @@
"rel": "about",
"storage:refs": [
"aws"
],
"auth:refs": [
"aws"
]
}
]
Expand Down

0 comments on commit e4e5a0e

Please sign in to comment.