giswqs / NASA-CMR-STAC

A list of geospatial datasets on NASA's Common Metadata Repository (CMR)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NASA-CMR-STAC

Colab Binder License

Introduction

NASA's Common Metadata Repository (CMR) is a metadata catalog of NASA Earth Science data. This repo compiles the list of all geospatial datasets on CMR-STAC 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 on NASA's CMR 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/NASA-CMR-STAC/raw/master/nasa_cmr_catalog.tsv'
df = pd.read_csv(url, sep='\t')
df.head()

Related Projects

About

A list of geospatial datasets on NASA's Common Metadata Repository (CMR)

License:MIT License


Languages

Language:Jupyter Notebook 81.3%Language:Python 18.7%