Skip to content

vigneshtdev/heliopy

 
 

Repository files navigation

HelioPy

A python library for Space Physics. The primary goal of this python package is to make it really easy to import common data sets used in Space Physics. Full documentation can be found here.

A quick example shows how easy it is to import and view data:

from datetime import datetime, timedelta
import heliopy.data.wind as wind
import matplotlib.pyplot as plt

starttime = datetime(2016, 1, 1, 0, 0, 0)
endtime = starttime + timedelta(hours=2)

data = wind.mfi_h0(starttime, endtime)

plt.plot(data['Bx_gse'])
plt.plot(data['By_gse'])
plt.plot(data['Bz_gse'])

plt.show()

If HelioPy is missing a method to import a dataset you are interested in, please submit a request at https://github.com/heliopython/heliopy/issues.

Build Status Coverage

About

Python for Space Physics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%