Level-0 Dataset#
The Level-0 data are the raw images gathered by the DACS during flight. This tutorial will show how to load this dataset and make a movie using a few of the images. We will also show how to plot the temperatures and voltages available in the dataset.
[1]:
import matplotlib.pyplot as plt
import astropy.visualization
import named_arrays as na
import esis
Start by defining the names of the time axis and channel axis.
Now we can use these axis names to load the Level-0 dataset into memory
[2]:
WARNING: function 'sqrt' is not known to astropy's Quantity. Will run it anyway, hoping it will treat ndarray subclasses correctly. Please raise an issue at https://github.com/astropy/astropy/issues. [astropy.units.quantity]
We’ll plot only every 4th frame to ease the computation time of this script.
[3]:
index = {level_0.axis_time: slice(None, None, 4)}
Plot an animation of the frames captured by each channel.
[4]:
level_0[index].to_jshtml()
[4]: