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()
../../_images/sphx_glr_simple_001.png

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

Generated by Sphinx-Gallery