IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Initial Version and Version 1 of Multiple_ippObjIDs


Ignore:
Timestamp:
Dec 13, 2012, 11:57:41 AM (14 years ago)
Author:
bills
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Multiple_ippObjIDs

    v1 v1  
     1= Objects with StackDetections with Multiple ippObjID =
     2
     3Peder noticed that not all StackDetections for a given psps object have the same ippObjID. This is expected and is also
     4true for single frame detections.
     5
     6A one to one correspondence between ipp object (dvo average) and psps object
     7is not guaranteed. Object.ippObjID gives the ipp object that supplied the average properties.
     8
     9Any detections for the object that have a different ippObjID were not included in the average calculations.
     10
     11These are primarily very faint detections many are from forced photometry.
     12
     13In SAS 11 PSPS objects with stack detections from multiple dvo objects appear to be *all* bad objects.
     14A query for objects which have detections with more than one ippObjectID and any of xFlags != 0 returned no rows
     15
     16
     17{{{
     18select Top 10 o.objID, count(distinct sd.ippObjID)
     19 INTO mydb.[funnyobjs2] FROM
     20Object as o join StackDetectionFull as sd on o.objID = sd.objID
     21WHERE o.rFlags != 0 or o.gFlags != 0
     22or o.iFlags != 0 or o.zFlags != 0
     23or o.yFlags != 0
     24or o.qualityFlag & 16 != 0
     25GROUP BY o.objID
     26HAVING count(distinct sd.ippObjID) > 1
     27
     28}}}
     29
     30A similar query using Detection instead of StackDetection did find some objects with multiple dvo objects and non-zero flags
     31
     32How does this happen?
     33
     34
     35{{{
     36Example  from SAS 11
     37
     38-----------------------
     39
     40107513365582181356 was the result of 4 garbage detections within the region for the given ID
     41
     42DVO has 7 detections with this objID
     43
     44Staticsky run for skycell.1316.093 found a i=18  and a r=22 detection on artifacts. Since there are detections
     45in two filters forced detections were created in the other 3 filters
     46
     47Call these detection group 1
     48
     49
     50Staticsky run for skycell.1316.083 found 2 detections on in r on another artifact near the coordinates and nothing in the other filters
     51Call these detection groups 2 and 3
     52
     53DVO associated the g, i, z, and y detections from group 1 with the r band detection in group 3 into one dvo object
     54Call this object A
     55
     56and
     57
     58DVO associated the r band detection from groups 1 and 2 with a second DVO object
     59call this object B
     60
     61Both dvo objects have the same PSPS objID
     62
     63
     64PSPS has 6 detections. The r band detection from object A was dropped by ippToPSPS Could this be because it doesn't like two
     65detections for the same PSPS object in the same cmf file?
     66
     67
     68
     69}}}