|
FEPS Pleiades Star HII_173:
MIPS-PHOT, band 1, 24 micron
|
In this demo, we mosaic small-field 24 um photometry observations. This demo continues in a source extraction step.
To follow all of the examples using these data, going from retrieving data using Leopard through extracting point-source fluxes, see this page.
unix% cd /where/you/unpacked_data/r5315584/ch1/pbcd/ unix% ds9 SPITZER_M1_5315584_0000_1_E429953_msaic.fits & |
Personally, I like to have just one copy of the cal directory into which I can put the latest pmasks and the PRF I want to start from. Also copy the cdf namelist files for this example into a cdf subdirectory.
unix% cd r5315584/ch1/bcd/ unix% ln -s /where/you/unpacked_data/cal ./cal unix% mkdir cdf unix% mv /where/you/downloaded/mosaic_24um.nl ./cdf/ |
unix% cd r5315584/ch1/bcd/ unix% ls *bcd.fits > InputImageList.txt unix% ls *bbmsk.fits > DmaskList.txt unix% ls *bunc.fits > SigmaList.txt unix% nedit InputImageList.txt DmaskList.txt SigmaList.txt unix% wc *.txt unix% nedit cdf/mosaic_24um.nl |
You don't want to list every single file here, because (i) there are
serendipitous data (e.g., data obtained using the 24 um array when the
spacecraft and scan mirror motions are optimized for the 70 and 160 um
arrays), and (ii) the first frame effect means that you want to
drop the DCENUM=0 frames. (Note: if you really want to keep the first
frames, those data can be corrected and included, but we have plenty of
data, so we have the luxury of simply dropping them. See the MIPS Data
Handbook for more details on this.) Delete the files from the lists
starting with the following roots to remove the first frames:
SPITZER_M1_5315584_0000_0000_1_* SPITZER_M1_5315584_0001_0000_1_* SPITZER_M1_5315584_0002_0000_1_*To figure out which files are serendipitous data, the easiest way to do this is to look in the header for the keyword PRIMEARR. You can examine each header separately, but this is how I do it in a more automated fashion. I use the tool "imhead" (available from the unix command line), which is part of the WCS tools package. Type "which imhead" at the unix command line to see if you have that package installed (if it says "command not found," you don't have it) and go install it if necessary.
unix% which imhead /SciApps/bin/imhead unix% imhead *bcd.fits | grep PRIMEARR > aaa unix% ls *bcd.fits > bbb unix% paste aaa bbb > ccc |
SPITZER_M1_5315584_0003_* SPITZER_M1_5315584_0004_* SPITZER_M1_5315584_0005_*Then check the length of each file ("wc *.txt") to be sure that you deleted the same number of files from each list. The "wc" step counts the number of lines, words, and characters in the files; the total number of lines should be the same in each of the *.txt files. If they're not, fix it so that they are...
Finally, edit the namelist to reflect where your cal files are located -- be sure to use the right pathnames!
unix% mosaic.pl -n mosaic_24um.nl OR unix% mkdir pbcd24 unix% mosaic.pl -n mosaic_24um.nl > pbcd24/mosaic.log |
Note that the namelist is assumed to be in the cdf subdir, not in your current directory. If desired, redirect the output to a log file for your records. (actual mosaic log file)
Common errors:
unix% ds9 pbcd24/Combine/mosaic.fits & |
Check the mosaic for anything that looks 'odd.' It should look pretty much like the online mosaic (which came with your data, in the pbcd directory). (see figure and fits file)
Common errors:
Return to the Data Analysis Demos main page.