...
Ok I guess my main question now is, what kind of plots should I be making now?
Jul 31
As far as I understand, my tasks now are the following:
- Use stacked images from photpipe to build a catalogue of stars with low error in all bands, no close neighbors and are close to the stellar locus.
- Check how (airmass corrected) stellar color in that catalogue change with time, and if so if that change is dependent on median stellar color.
So currently I am very close to attaining the first goal. The second goal is a bit tricky because of the mass of data I have to churn through, but hopefully I'll be able to get the code right soon.
...
Data access on Odyssey:
- Run JAuth.jar to get login key
- ssh -Y into to odyssey.fas.harvard.edu, or herophysics.fas.harvard.edu, using the electronic key.
- run tcsh
- source .myrcstubbs
- data are at /n/panlfs/data/MIRROR/ps1-md/gpc1/
- nightly science uses individually warped images, nightly stacks run on stacked frames
- image types: wrp is warped.
- see available modules with "module avail"
- load a module with "module load hpc/ds9-5.6"
- photometry is in .cmf files, as FITS tables.
- in python:
- import pyfits as p
- p.open('filename')
- print a[0].header
- or, imhead on command line
- a[1].data.AP_MAG for aperture magnitudes
- PSF_RA and PSF_DEC are in the skycell files.
- make a scratch directory for data in /n/panlfs
...