Can I write a RHESSI image cube FITS file without using the GUI?
As of March 2005, the image object works with image cubes as well as single images. To write an image cube FITS file, set up an image object with multiple time and/or energy bins, and use the fitswrite method as follows: o = hsi_image() o -> set, im_time_interval= [‘2002-02-20 11:06:00’, ‘2002-02-20 11:06:30’] o -> set, im_time_bin = 4.3 o -> set, im_energy_binning=[3,6,12,25] o -> fitswrite This example produces an image cube FITS file with six time bins of duration 4.3 seconds and three energy bins. See How to work with the Image Object for more details.