IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 2 and Version 3 of BillsSAS39ColorColorPlots


Ignore:
Timestamp:
Aug 14, 2015, 1:31:37 PM (11 years ago)
Author:
bills
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BillsSAS39ColorColorPlots

    v2 v3  
    99IPP psps forced photometry takes the positions of the detections made in the stack photometry and does forced photometry on the single frame warp images.
    1010
    11 I decided to use the "view" !ForcedMeanObjectView which is a join of the tables ObjectThin and ForcedMeanObject. I decided to cut on the qualityFlag requiring that the "good stack" bit be set. In order to keep they query time
     11I decided to use the "view" !ForcedMeanObjectView which is a join of the tables !ObjectThin and !ForcedMeanObject. I decided to cut on the qualityFlag requiring that the "good stack" bit be set. In order to keep they query time
    1212managable I queried a subset of the survey using the projectionID column. This restricted the results to objects in projection cell 1406 (334 < ra < 338 0 < dec < 4)
    1313
     
    2020This yielded 562,311 objects.
    2121
    22 The ForcedMeanObjectView only has fluxes.  Since this was my first set of queries in awhile I decided not to convert the fluxes to magnitudes in the query. I simply grabbed the objects and ran the results through
    23 various iterations of a [http://www.star.bristol.ac.uk/~mbt/stilts/ STILTS] program to convert to magnitudes.at I used this [wiki:forcedFluxToMagsExaample perl script] to facitiate the conversions
     22The !ForcedMeanObjectView only has fluxes.  Since this was my first set of queries in awhile I decided not to convert the fluxes to magnitudes in the query. I simply grabbed the objects and ran the results through
     23various iterations of a [http://www.star.bristol.ac.uk/~mbt/stilts/ STILTS] program to convert to magnitudes.at I used this [wiki:forcedFluxToMagsExaample perl script] to facitiate the conversions. Adding
     24entries like
     25{{{
     268.9-2.5*log10(gFPSFFlux)
     27}}}
     28 to the list of columns in the query would allow us to avoid the stilts step. However the database is going to be busy and keeping the math done there to a minimum seems like a reasonable thing to do.
     29
     30