Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 2.41 KB

README.md

File metadata and controls

39 lines (27 loc) · 2.41 KB

Earth-Engine-Catalog

Colab Binder License

Introduction

The Google Earth Engine platform hosts a lot of publicly available geospatial datasets. This repo compiles the list of all geospatial datasets on Earth Engine 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 Earth Engine 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/Earth-Engine-Catalog/raw/master/gee_catalog.tsv'
df = pd.read_csv(url, sep='\t')
df.head()

Related Projects