pyspace-api

Easily access NASA, ESA and JAXA data


License
MIT
Install
pip install pyspace-api==0.0.1

Documentation

Pyspace

Easily access NASA, ESA and JAXA data

About

You can use this API to access and see statistics about NASA, JAXA and ESA datasets. Check the available datasets and how to use them bellow.

Available Datasets

ESA

mortality and natality
coronavirus cases worldwide

JAXA

greenhouse gases concentration

NASA

landslides
atmospherical data

Main Functions

Constructors

Initialize an object with the required data

Describe

Generete statistics about all the features in the dataset, such as mean, standard deviation and quartiles.

Examples

from pyspace.nasa import Landslide

LS = Landslide(subset=100, verbose=True)

print(LS.summarize())
print(LS.df.head())