Changes between Version 15 and Version 16 of DVO_Conrad_Worksheet
- Timestamp:
- Jun 21, 2012, 3:54:43 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DVO_Conrad_Worksheet
v15 v16 97 97 == Background == 98 98 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 101 Step 0) Find the inaccurate data within PSPS. 102 {{{ 103 SELECT 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 }}}
