Skip to content

opengeos/geospatial-data-catalogs

Repository files navigation

geospatial-data-catalogs

Colab Binder License

Introduction

Some of the popular cloud-computing platforms (e.g., AWS, Google Earth Engine, Microsoft Planetary Computer, NASA's Common Metadata Repository (CMR)) 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()

Relevant Projects