https://github.com/opengeos/stac-index-catalogs
A list of STAC endpoints retrieved from https://stacindex.org
https://github.com/opengeos/stac-index-catalogs
cog geospatial geotiff open-data satellite-imagery stac stac-catalog
Last synced: about 1 month ago
JSON representation
A list of STAC endpoints retrieved from https://stacindex.org
- Host: GitHub
- URL: https://github.com/opengeos/stac-index-catalogs
- Owner: opengeos
- License: mit
- Created: 2022-12-21T18:28:18.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-04-18T03:37:01.000Z (about 1 month ago)
- Last Synced: 2025-04-18T16:44:01.886Z (about 1 month ago)
- Topics: cog, geospatial, geotiff, open-data, satellite-imagery, stac, stac-catalog
- Language: Jupyter Notebook
- Homepage:
- Size: 317 KB
- Stars: 18
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# stac-index-catalogs
[](https://colab.research.google.com/github/giswqs/stac-index-catalogs/blob/master/stac_catalogs.ipynb)
[](https://mybinder.org/v2/gh/giswqs/stac-index-catalogs/HEAD?labpath=stac_catalogs.ipynb)
[](https://opensource.org/licenses/MIT)## Introduction
The [STAC Index](https://stacindex.org/) website hosts a lot of geospatial datasets with a [SpatioTemporal Asset Catalog (STAC)](https://stacspec.org/) endpoint. This repo compiles the list of the STAC endpoints as a CSV file, making it easier to find and use geospatial datasets programmatically. The list is updated daily.
A complete list of all STAC endpoints as a JSON file is available [here](https://stacindex.org/api/catalogs).
## Usage
This repo provides the list of STAC endpoints in two formats:
- Tab separated values (TSV) file: [stac_catalogs.tsv](https://github.com/giswqs/stac-index-catalogs/blob/master/stac_catalogs.tsv)
- JSON file: [stac_catalogs.json](https://github.com/giswqs/stac-index-catalogs/blob/master/stac_catalogs.json)The TSV file can be easily read into a Pandas DataFrame using the following code:
```python
import pandas as pdurl = 'https://github.com/giswqs/stac-index-catalogs/raw/master/stac_catalogs.tsv'
df = pd.read_csv(url, sep='\t')
df.head()
```## Related Projects
- A list of open datasets on AWS: [aws-open-data](https://github.com/giswqs/aws-open-data)
- A list of open geospatial datasets on AWS: [aws-open-data-geo](https://github.com/giswqs/aws-open-data-geo)
- A list of open geospatial datasets on AWS with a STAC endpoint: [aws-open-data-stac](https://github.com/giswqs/aws-open-data-stac)
- A list of STAC endpoints from stacindex.org: [stac-index-catalogs](https://github.com/giswqs/stac-index-catalogs)
- A list of geospatial datasets on Microsoft Planetary Computer: [Planetary-Computer-Catalog](https://github.com/giswqs/Planetary-Computer-Catalog)
- A list of geospatial datasets on Google Earth Engine: [Earth-Engine-Catalog](https://github.com/giswqs/Earth-Engine-Catalog)
- A list of geospatial datasets on NASA's Common Metadata Repository (CMR): [NASA-CMR-STAC](https://github.com/giswqs/NASA-CMR-STAC)
- A list of geospatial data catalogs: [geospatial-data-catalogs](https://github.com/giswqs/geospatial-data-catalogs)