Skip to content

giswqs/Planetary-Computer-Catalog

Repository files navigation

Planetary-Computer-Catalog

Colab Binder License

Introduction

The Microsoft Planetary Computer platform hosts a lot of publicly available geospatial datasets. This repo compiles the list of all geospatial datasets on Planetary Computer as a CSV file and as a JSON file, making it easier to find and use them programmatically. The list is updated daily.

A complete list of geospatial datasets on Planetary Computer is available here.

Usage

This repo provides the list of geospatial datasets on Planetary Computer 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/Planetary-Computer-Catalog/raw/master/pc_catalog.tsv'
df = pd.read_csv(url, sep='\t')
df.head()

Related Projects