| | 92 | == View {{{FalsePositives}}} == |
| | 93 | * Consist of the detections where unmatched is 1 |
| | 94 | * Built from {{{DetectionFeatures}}} |
| | 95 | * How it was built |
| | 96 | {{{ |
| | 97 | CREATE 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 | {{{ |
| | 105 | CREATE VIEW AnalysisStage010 AS SELECT * from FalsePositives WHERE (!(flags2 & 64) AND !(flags2 & 32) |
| | 106 | AND !(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) = |