Early Release Observation of Comet
SW-1:
|
· Follow the instructions on Spectroscopy: Custom Spectrum Extraction
This demonstration uses SPICE to extract a spectrum from IRS data of the Comet Schwassmann-Wachmann-1. We describe the steps required to background-subtract your data and use the SPICE tool to perform a custom extraction of your target's spectrum. Background subtraction is particularly important for targets on a high background, such as that found in the ecliptic plane. Similarly for a moving target such as a comet, a custom extraction, rather than the standard pipeline product, may be important to separate the effects of nucleus and coma, and to otherwise correctly extract a slightly extended object, or one with an unusual morphology. This demonstration then, serves as a generic example for handling moving target data obtained with Spitzer IRS-Staring Mode. The steps are quite similar to those outlined here. This specific example involves an extraction from the LL2 module, but it is generally applicable to all of the IRS modules.
Note that a more detailed description of IRS Data Reduction steps can be
found at: http://ssc.spitzer.caltech.edu/irs/documents/IRSDataReductionSteps.pdf
;idl program to perform sky subtraction on IRS data filename1='SPITZER_S2_6068992_4_1_E181979_coa2d.fits' filename2='SPITZER_S2_6068992_5_1_E181965_coa2d.fits' filename3='6068992_LLO2_4_5.fits' filename4='6068992_LLO2_5_4.fits' r1=readfits(filename1,hdr1) r2=readfits(filename2,hdr2) r3=r1-r2 r4=r2-r1 writefits,filename3,r3,hdr1 writefits,filename4,r4,hdr2 end |
unix% spice.csh |
|
|
|
|
|
|
|
|
Return to the Data Analysis Demos main page.