level_0¶
-
esis.flight.
level_0
(caching=False)¶ Compute a
esis.data.level_0.Level_0
instance for the 2019 flight.The Level-0 dataset represents the raw data obtained from the MSFC cameras.
In the example below, we’ve plotted an animation of the raw data obtained during the 2019 ESIS flight.
import matplotlib.pyplot as plt from IPython.display import HTML import esis %time level_0 = esis.flight.level_0(caching=True) fig_intensity_ani, ax_intensity_ani = plt.subplots( ncols=4, figsize=(9.5, 7), sharex=True, sharey=True, constrained_layout=True, squeeze=False) %time intensity_ani = level_0.animate_intensity(ax_intensity_ani) %time intensity_ani_html = intensity_ani.to_jshtml() plt.close(fig_intensity_ani) HTML(intensity_ani_html)
Wall time: 28 s
Wall time: 7.34 s
Wall time: 1min 7s