/geospatial-data-catalogs

A list of open geospatial datasets available on AWS, Earth Engine, Planetary Computer, and STAC Index

Primary LanguageJupyter NotebookMIT LicenseMIT

geospatial-data-catalogs

Colab Binder License

Introduction

Some of the popular cloud-computing platforms (e.g., AWS, Google Earth Engine, Microsoft Planetary Computer) host a lot of publicly available geospatial datasets. This repo compiles the list of all geospatial datasets on these platforms as a CSV file and as a JSON file, making it easier to find and use them programmatically. The list is updated daily.

Usage

This repo provides the list of geospatial datasets in two formats:

Tab separated values (TSV) format

JSON format

Examples

The TSV file can be easily read into a Pandas DataFrame using the following code:

import pandas as pd

url = 'https://github.com/giswqs/geospatial-data-catalogs/raw/master/aws_geo_datasets.tsv'
df = pd.read_csv(url, sep='\t')
df.head()

Related Projects