https://github.com/opengeos/nasa-earth-data
A comprehensive list of NASA Earth science data products
https://github.com/opengeos/nasa-earth-data
cloud-optimized-geotiff earth-science geospatial nasa-data satellite-data satellite-imagery
Last synced: 7 months ago
JSON representation
A comprehensive list of NASA Earth science data products
- Host: GitHub
- URL: https://github.com/opengeos/nasa-earth-data
- Owner: opengeos
- License: mit
- Created: 2023-12-19T03:38:21.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-30T03:33:03.000Z (12 months ago)
- Last Synced: 2024-10-30T06:24:32.045Z (12 months ago)
- Topics: cloud-optimized-geotiff, earth-science, geospatial, nasa-data, satellite-data, satellite-imagery
- Language: Jupyter Notebook
- Homepage:
- Size: 33.6 MB
- Stars: 132
- Watchers: 6
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NASA-Earth-Data
[](https://colab.research.google.com/github/opengeos/NASA-Earth-Data/blob/main/nasa_earth_data.ipynb)
[](https://opensource.org/licenses/MIT)## Introduction
This repository provides a comprehensive list of NASA's Earth science data products available for research and analysis. The data is managed and maintained by NASA's Earth Science Data Systems ([ESDS](https://www.earthdata.nasa.gov/esds)) Program, which ensures the accessibility and usability of the data.
You can access the NASA Earth science data through the official Earthdata website at [earthdata.nasa.gov](https://earthdata.nasa.gov). To download and access the data, you will need to create an Earthdata login. You can register for an account at [urs.earthdata.nasa.gov](https://urs.earthdata.nasa.gov).
The repository includes a curated list of NASA Earth science data products compiled using the Python package called [earthaccess](https://github.com/nsidc/earthaccess). The list is available in two formats: Tab Separated Values (TSV) and JSON.
## Usage
To access the list of NASA Earth data, you can use the following links:
- [nasa_earth_data.tsv](https://github.com/opengeos/NASA-Earth-Data/blob/main/nasa_earth_data.tsv): This is the TSV file format, suitable for reading data into Pandas DataFrame or other tabular data processing tools.
- [nasa_earth_data.json](https://github.com/opengeos/NASA-Earth-Data/blob/main/nasa_earth_data.json): This is the JSON file format, which provides a structured representation of the data.Here is an example of how to read the TSV file into a Pandas DataFrame using Python:
```python
import pandas as pdurl = 'https://github.com/opengeos/NASA-Earth-Data/raw/main/nasa_earth_data.tsv'
df = pd.read_csv(url, sep='\t')
df.head()
```Here is an example of how to read the TSV file into a DataFrame using R:
```R
library(data.table)url <- 'https://github.com/opengeos/NASA-Earth-Data/raw/main/nasa_earth_data.tsv'
df <- fread(url, sep='\t')
print(head(df))
```There are over 9,000 NASA Earth science data products available. The list is being updated daily. Feel free to explore the data and utilize it for your research, analysis, and Earth science projects.
## 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)