For many purposes it is useful to extract window data to a structure. This is done as follows:
IDL> wd=eis_getwindata(filename,195.12)
where filename is that of the calibrated (level-1) data file. Note that the routine automatically looks in the same directory for the error file and reads this too.
Specifying 195.12 means the routine will find the window that contains the wavelength 195.12 Å (the strong Fe XII line).
The returned structure contains an intensity array and error array, as well as a lot of useful auxiliary information. To see the structure tags do:
IDL> help,wd,/str
note that the HDR tag contains the complete header structure for the data-set.
IDL> plot_image,rebin(wd.int(*,*,20),80,256)
can you explain what is seen here?