Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/giswqs/planetary-computer-catalog
The Microsoft Planetary Computer Catalog in CSV format
https://github.com/giswqs/planetary-computer-catalog
cog data-science geospatial geotiff open-data planetary-computer satellite-imagery stac-catalog
Last synced: about 2 months ago
JSON representation
The Microsoft Planetary Computer Catalog in CSV format
- Host: GitHub
- URL: https://github.com/giswqs/planetary-computer-catalog
- Owner: giswqs
- License: mit
- Created: 2022-12-21T21:38:48.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-23T03:28:16.000Z (over 1 year ago)
- Last Synced: 2024-05-01T15:40:47.263Z (8 months ago)
- Topics: cog, data-science, geospatial, geotiff, open-data, planetary-computer, satellite-imagery, stac-catalog
- Language: Python
- Homepage:
- Size: 1.14 MB
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Planetary-Computer-Catalog
[![Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/giswqs/Planetary-Computer-Catalog/blob/master/pc_catalog.ipynb)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/giswqs/Planetary-Computer-Catalog/HEAD?labpath=pc_catalog.ipynb)
[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)## Introduction
The [Microsoft Planetary Computer](https://planetarycomputer.microsoft.com/) 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](https://planetarycomputer.microsoft.com/catalog).
## Usage
This repo provides the list of geospatial datasets on Planetary Computer in two formats:
- Tab separated values (TSV) file: [pc_catalog.tsv](https://github.com/giswqs/Planetary-Computer-Catalog/blob/master/pc_catalog.tsv)
- JSON file: [pc_catalog.json](https://github.com/giswqs/Planetary-Computer-Catalog/blob/master/pc_catalog.json)The TSV file can be easily read into a Pandas DataFrame using the following code:
```python
import pandas as pdurl = 'https://github.com/giswqs/Planetary-Computer-Catalog/raw/master/pc_catalog.tsv'
df = pd.read_csv(url, sep='\t')
df.head()
```## Related Projects
- A list of open datasets on AWS: [aws-open-data](https://github.com/giswqs/aws-open-data)
- A list of open geospatial datasets on AWS: [aws-open-data-geo](https://github.com/giswqs/aws-open-data-geo)
- A list of open geospatial datasets on AWS with a STAC endpoint: [aws-open-data-stac](https://github.com/giswqs/aws-open-data-stac)
- A list of STAC endpoints from stacindex.org: [stac-index-catalogs](https://github.com/giswqs/stac-index-catalogs)
- A list of geospatial datasets on Microsoft Planetary Computer: [Planetary-Computer-Catalog](https://github.com/giswqs/Planetary-Computer-Catalog)
- A list of geospatial datasets on Google Earth Engine: [Earth-Engine-Catalog](https://github.com/giswqs/Earth-Engine-Catalog)
- A list of geospatial datasets on NASA's Common Metadata Repository (CMR): [NASA-CMR-STAC](https://github.com/giswqs/NASA-CMR-STAC)
- A list of geospatial data catalogs: [geospatial-data-catalogs](https://github.com/giswqs/geospatial-data-catalogs)