opengeos / Earth-Engine-Catalog

The Google Earth Engine data catalog in CSV format

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

The Google Earth Engine data catalog in CSV format

License:MIT License


Languages

Language:Python 69.4%Language:Jupyter Notebook 30.6%