IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 32536


Ignore:
Timestamp:
Oct 12, 2011, 10:40:30 AM (15 years ago)
Author:
bills
Message:

For warp destreaking check whether the tess_id for the diffs used in the
streak detection stage matches the tess_id of the warp. If not pass the diff_tess_id
to magic_destreak.pl and compute the overlap using dvoImageOverlaps

Location:
trunk/ippTools/share
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/share/magicdstool_todestreak_camera.sql

    r30238 r32536  
    1414    stage_id,
    1515    'exposure' AS component,
     16    0 AS mismatched_tess,
    1617    CAST(NULL AS CHAR(255)) AS uri,
    1718    camProcessedExp.path_base,
  • trunk/ippTools/share/magicdstool_todestreak_chip.sql

    r29561 r32536  
    1414    stage_id,
    1515    class_id AS component,
     16    0 AS mismatched_tess,
    1617    chipProcessedImfile.uri,
    1718    chipProcessedImfile.path_base,
  • trunk/ippTools/share/magicdstool_todestreak_diff.sql

    r29561 r32536  
    1515    diffRun.magicked,
    1616    diffSkyfile.skycell_id AS component,
     17    0 AS mismatched_tess,
    1718    CAST(NULL AS CHAR(255)) AS uri,
    1819    diffSkyfile.path_base,
     
    6364    diffRun.magicked,
    6465    diffSkyfile.skycell_id AS component,
     66    0 AS mismatched_tess,
    6567    CAST(NULL AS CHAR(255)) AS uri,
    6668    diffSkyfile.path_base,
  • trunk/ippTools/share/magicdstool_todestreak_raw.sql

    r30809 r32536  
    1414    rawExp.magicked,
    1515    class_id as component,
     16    0 AS mismatched_tess,
    1617    rawImfile.uri AS uri,
    1718    -- XXX: replace this with rawImfile.path_base once it exists
  • trunk/ippTools/share/magicdstool_todestreak_warp.sql

    r29561 r32536  
    1414    warpRun.magicked,
    1515    warpSkyfile.skycell_id as component,
     16    diffRun.tess_id != warpRun.tess_id AS mismatched_tess,
     17    diffRun.tess_id as diff_tess_id,
    1618    warpSkyfile.uri,
    1719    warpSkyfile.path_base,
     
    2729JOIN magicMask USING (magic_id)
    2830JOIN magicRun USING (magic_id)
     31JOIN diffRun USING(diff_id)
    2932JOIN warpRun ON warp_id = stage_id
    3033JOIN warpSkyfile USING(warp_id)
Note: See TracChangeset for help on using the changeset viewer.