Skip to content

opengeos/stac-index-catalogs

Repository files navigation

stac-index-catalogs

Colab Binder License

Introduction

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.

Usage

This repo provides the list of STAC endpoints in two formats:

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()

Related Projects