Skip to content

Commit 6d3510d

Browse files
feat(#190): rename repo references
1 parent 724cbfb commit 6d3510d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# STAC API Serverless
1+
# stac-fastapi-indexed
22

3-
[![Pull Request, Any Branch](https://github.com/sparkgeo/STAC-API-Serverless/actions/workflows/pull-request-all.yml/badge.svg)](https://github.com/sparkgeo/STAC-API-Serverless/actions/workflows/pull-request-all.yml)
3+
[![Pull Request, Any Branch](https://github.com/sparkgeo/stac-fastapi-indexed/actions/workflows/pull-request-all.yml/badge.svg)](https://github.com/sparkgeo/stac-fastapi-indexed/actions/workflows/pull-request-all.yml)
44

55
A [stac-fastapi](https://github.com/stac-utils/stac-fastapi) backend that indexes a STAC catalog to Parquet to make it searchable. The ability to work with static files, and the lack of a need for another persistent data store such as a database, mean this backend can run in a serverless environment. See [Overview](#overview) for more information on this approach.
66

@@ -46,7 +46,7 @@ scripts/run-with-remote-source.sh https://esa.pages.eox.at/cubes-and-clouds-cata
4646
Output includes the following information about the index.
4747
```sh
4848
* Indexing may take some time, depending on the size of the catalog
49-
* Indexing to /.../source/sparkgeo/STAC-API-Serverless/.remote-source-index/httpsesapageseoxatcubesandcloudscatalogMOOCCubesandcloudscatalogjson
49+
* Indexing to /.../source/sparkgeo/stac-fastapi-indexed/.remote-source-index/httpsesapageseoxatcubesandcloudscatalogMOOCCubesandcloudscatalogjson
5050
```
5151

5252
The generated index files can be inspected at `.../.remote-source-index/httpsesapageseoxatcubesandcloudscatalogMOOCCubesandcloudscatalogjson` if necessary. If at a later time you want to run the API against this same index, without re-indexing the remote STAC catalog, this can be achieved with the following:

docs/suitability.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ This stac-fastapi backend does not support transactions and never will. If you n
1212

1313
The indexing approach requires that some STAC data be duplicated in Parquet index files, and these files are the API's source of truth about that STAC data. If the STAC data changes and the Parquet index files are not updated before an API request is received it is possible for the API to return incorrect data or an error.
1414

15-
This risk can be mitigated somewhat by a shorter indexer repeat cycle, or by event-driven item updates as are intended by [#157](https://github.com/sparkgeo/STAC-API-Serverless/issues/157), but the risk cannot be eliminated entirely.
15+
This risk can be mitigated somewhat by a shorter indexer repeat cycle, or by event-driven item updates as are intended by [#157](https://github.com/sparkgeo/stac-fastapi-indexed/issues/157), but the risk cannot be eliminated entirely.
1616

17-
[#160](https://github.com/sparkgeo/STAC-API-Serverless/issues/160) could also help to address some data duplication risks.
17+
[#160](https://github.com/sparkgeo/stac-fastapi-indexed/issues/160) could also help to address some data duplication risks.
1818

1919
### Performance
2020

iac/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
app = cdk.App()
55
CdkDeploymentStack(
66
app,
7-
"STAC-API-Serverless",
7+
"stac-fastapi-indexed",
88
env=cdk.Environment(
99
account=app.node.get_context("AWS_ACCOUNT"),
1010
region=app.node.get_context("AWS_REGION"),

iac/cdk_deployment/cdk_deployment_stack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def create_api(
7575
default_cors_preflight_options=cors,
7676
proxy=True,
7777
binary_media_types=[],
78-
rest_api_name="STAC-API-Serverless",
78+
rest_api_name="stac-fastapi-indexed",
7979
)
8080

8181
def create_indexer(

packages/stac-index/src/stac_index/io/readers/https/https_source_reader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ async def process(response: ClientResponse) -> None:
7676
await self._get_uri_and_process(uri, process)
7777

7878
# This function interacts with HTTP endpoints inefficiently.
79-
# See https://github.com/sparkgeo/STAC-API-Serverless/issues/98 for thoughts on this.
79+
# See https://github.com/sparkgeo/stac-fastapi-indexed/issues/98 for thoughts on this.
8080
async def get_item_uris_from_items_uri(
8181
self: Self, uri: str, item_limit: Optional[int] = None
8282
) -> Tuple[List[str], List[str]]:

0 commit comments

Comments
 (0)