Solar Eclipse Documentation¶
Welcome to the documentation.
Guide¶
Welcome to the user guide. Coming soon!
Code Reference¶
Example Gallery¶
This gallery contains some examples of how to use this package.
AIA Plot Example¶
This is a very simple way to plot a sample AIA image. asdfasdfasd asdf asdf asdf asdf asd fads
from __future__ import print_function, division
import matplotlib
import matplotlib.pyplot as plt
import numpy as np
from eclipse import SAMPLE_PHOTO
read in the image and flip it so that it’s correct
im_rgb = np.flipud(matplotlib.image.imread(SAMPLE_PHOTO))
# remove color info
im = np.average(im_rgb, axis=2)
plt.imshow(im, origin='lower')
plt.show()

Total running time of the script: ( 0 minutes 0.451 seconds)