Read Aligned Cube Data¶
If you don't have any aligned data, please see the Align Data first. After aligning the series of data, you can easily draw the interactive figure. It use the makeTDmap class to draw the figure. Note that you should change the matplotlib backend to one of interactive backend.
In [ ]:
import fisspy
import matplotlib.pyplot as plt
ac = fisspy.read.AlignCube(r'D:\Data\140603\140603_alosv_A.npz')
ac.imshow(cmap=plt.cm.RdBu_r, clim=[-5,5])
c:\Users\dlooi\miniforge3\envs\fissdocs\Lib\site-packages\fisspy\analysis\tdmap.py:143: UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown self.fig.show()
Interactive key are described in the example of the makeTDmap example.