Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/opengeos/aws-open-data-stac
A list of STAC endpoints for the AWS Open Data Program
https://github.com/opengeos/aws-open-data-stac
aws cog geospatial geotiff open-data satellite-imagery stac-catalog
Last synced: 3 months ago
JSON representation
A list of STAC endpoints for the AWS Open Data Program
- Host: GitHub
- URL: https://github.com/opengeos/aws-open-data-stac
- Owner: opengeos
- License: mit
- Created: 2022-12-17T19:31:18.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-09T03:27:58.000Z (9 months ago)
- Last Synced: 2024-05-09T04:31:37.880Z (9 months ago)
- Topics: aws, cog, geospatial, geotiff, open-data, satellite-imagery, stac-catalog
- Language: Python
- Homepage:
- Size: 171 KB
- Stars: 21
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aws-open-data-stac
[![Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/giswqs/aws-open-data-stac/blob/master/aws_stac_catalogs.ipynb)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/giswqs/aws-open-data-stac/HEAD?labpath=aws_stac_catalogs.ipynb)
[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)## Introduction
The [AWS Open Data](https://registry.opendata.aws/) program hosts a lot of publicly available geospatial datasets. Some of these datasets are available as [SpatioTemporal Asset Catalog (STAC)](https://stacspec.org/) endpoints. This repo compiles the list of all AWS Open geospatial datasets with a STAC endpoint 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 AWS open datasets as individual YAML files is available [here](https://github.com/awslabs/open-data-registry).
## Usage
This repo provides the list of AWS open geospatial datasets with a STAC endpoint in two formats:
- Tab separated values (TSV) file: [aws_stac_catalogs.tsv](https://github.com/giswqs/aws-open-data-stac/blob/master/aws_stac_catalogs.tsv)
- JSON file: [aws_stac_catalogs.json](https://github.com/giswqs/aws-open-data-stac/blob/master/aws_stac_catalogs.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/aws-open-data-stac/raw/master/aws_stac_catalogs.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)