The STAC Index website hosts a lot of geospatial datasets with a SpatioTemporal Asset Catalog (STAC) 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.
This repo provides the list of STAC endpoints in two formats:
- Tab separated values (TSV) file: stac_catalogs.tsv
- JSON file: stac_catalogs.json
The TSV file can be easily read into a Pandas DataFrame using the following code:
import pandas as pd
url = 'https://github.com/giswqs/stac-index-catalogs/raw/master/stac_catalogs.tsv'
df = pd.read_csv(url, sep='\t')
df.head()
- A list of open datasets on AWS: aws-open-data
- A list of open geospatial datasets on AWS: aws-open-data-geo
- A list of open geospatial datasets on AWS with a STAC endpoint: aws-open-data-stac
- A list of STAC endpoints from stacindex.org: stac-index-catalogs
- A list of geospatial datasets on Microsoft Planetary Computer: Planetary-Computer-Catalog
- A list of geospatial datasets on Google Earth Engine: Earth-Engine-Catalog
- A list of geospatial datasets on NASA's Common Metadata Repository (CMR): NASA-CMR-STAC
- A list of geospatial data catalogs: geospatial-data-catalogs