IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 4 and Version 5 of ZoologyDatabase


Ignore:
Timestamp:
Aug 25, 2011, 11:49:07 AM (15 years ago)
Author:
Serge CHASTEL
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ZoologyDatabase

    v4 v5  
    9090
    9191= View(s) =
     92== View {{{FalsePositives}}} ==
     93 * Consist of the detections where unmatched is 1
     94 * Built from {{{DetectionFeatures}}}
     95 * How it was built
     96{{{
     97CREATE VIEW FalsePositives AS SELECT * from DetectionFeatures WHERE unmatched = 1;
     98}}}
     99
     100== View {{{AnalysisStage010}}} ==
     101 * Consist of "flagged as having a problem" detections
     102 * Built from {{{FalsePositives}}}
     103 * How it was built
     104{{{
     105CREATE VIEW AnalysisStage010 AS SELECT * from FalsePositives WHERE (!(flags2 & 64) AND !(flags2 & 32)
     106AND !(flags2 & 16) AND !(flags2&8) AND !(flags & 2048) AND !(flags & 4096) AND !(flags&8192) AND !(flags&16384) AND !(flags&268435456)) AND (cal_psf_mag is not null);
     107}}}
     108= View(s) =