IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 15 and Version 16 of DVO_Conrad_Worksheet


Ignore:
Timestamp:
Jun 21, 2012, 3:54:43 PM (14 years ago)
Author:
conradh
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DVO_Conrad_Worksheet

    v15 v16  
    9797== Background ==
    9898   After doing some queries into PSPS, one particular query for data quality is to find instrumental flux values that are equal to zero.  This should not be possible but some small amount of entries were found.
     99
     100
     101Step 0) Find the inaccurate data within PSPS.
     102{{{
     103SELECT objID,
     104       stackDetectID,
     105       ippObjID,
     106       ippDetectID,
     107       ra, dec
     108       filterID,
     109       instFlux,
     110       calMag,
     111       instFluxErr,
     112       calMagErr
     113  INTO mydb.weird_stacks FROM StackDetectionFull
     114 WHERE (instFlux <> -999 AND instFlux <= 0 )
     115}}}