From e3938f0585a61289539599e259e223f2ce54b44e Mon Sep 17 00:00:00 2001 From: emileten Date: Tue, 22 Aug 2023 16:58:34 +0200 Subject: [PATCH] feat: add STAC browser option --- README.md | 3 +++ lib/index.ts | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dd2609f..875742e 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,9 @@ A STAC API implementation using [stac-fastapi](https://github.com/stac-utils/sta ### [pgSTAC Titiler API](https://developmentseed.org/eoapi-cdk/#titilerpgstacapilambda-) A complete dynamic tiling API using [titiler-pgstac](https://github.com/stac-utils/titiler-pgstac) to create dynamic mosaics of assets based on [STAC Search queries](https://github.com/radiantearth/stac-api-spec/tree/master/item-search). Packaged as a complete runtime for deployment with API Gateway and Lambda and fully integrated with the pgSTAC Database construct. +### [STAC browser](https://developmentseed.org/eoapi-cdk/#stacbrowser-) +A CDK construct to host a static [Radiant Earth STAC browser](https://github.com/radiantearth/stac-browser) on S3. + ### [STAC Ingestor](https://developmentseed.org/eoapi-cdk/#stacingestor-) An API for large scale STAC data ingestion and validation into a pgSTAC instance. diff --git a/lib/index.ts b/lib/index.ts index 1dac133..6cfceb8 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -3,4 +3,5 @@ export * from "./bootstrapper"; export * from "./database"; export * from "./ingestor-api"; export * from "./stac-api"; -export * from "./titiler-pgstac-api"; \ No newline at end of file +export * from "./titiler-pgstac-api"; +export * from "./stac-browser"; \ No newline at end of file