...
Once you have a list of magnitudes, I've code that does robust 3-sigma clipping, which will nicely clean up the catalog.
...
Jul 23
I have been working on making the code more robust/building abstraction barriers, so now I have code that can reliably process data from both ipp and photpipe, and produce plots (color-color diagrams or otherwise). I also got SLR working with Gautham's help, so now we can have calibrated colors too.
I have looked at sample data from CNP, but Gautham says I should work with MD data for a while longer. I can't start processing CNP data right now because I don't know how to perform the WCS transformations. The data doesn't seem to be very robust just yet anyway?
Ok I guess my main question now is, what kind of plots should I be making now?
...
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
...