IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 16733 for trunk/ippTools/share


Ignore:
Timestamp:
Feb 28, 2008, 3:06:02 PM (18 years ago)
Author:
jhoblitt
Message:

require ippdb 1.1.31
remove warpInputExp table
remove warptool -runone & -addinputexp modes
add -cam_id & -magiced options to warptool -definerun

Location:
trunk/ippTools/share
Files:
3 edited

Legend:

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

    r12261 r16733  
    22    camProcessedExp.*
    33FROM warpRun
    4 JOIN warpInputExp
    5     USING(warp_id)
    64JOIN camProcessedExp
    7     ON warpInputExp.cam_id = camProcessedExp.cam_id
     5    USING(cam_id)
    86WHERE
    97    warpRun.state = 'run'
  • trunk/ippTools/share/warptool_imfile.sql

    r14698 r16733  
    11SELECT DISTINCT
    22    rawImfile.*,
    3     warpInputExp.cam_id,
     3    warpRun.cam_id,
    44    chipProcessedImfile.uri as chip_uri,
    55    chipProcessedImfile.path_base as chip_path_base,
    66    camProcessedExp.path_base as cam_path_base
    77FROM warpRun
    8 JOIN warpInputExp
    9     USING(warp_id)
    108JOIN camProcessedExp
    11     ON warpInputExp.cam_id = camProcessedExp.cam_id
     9    USING(cam_id)
    1210JOIN chipRun
    1311    ON camProcessedExp.chip_id = chipRun.chip_id
  • trunk/ippTools/share/warptool_tooverlap.sql

    r16324 r16733  
    66    rawExp.camera
    77FROM warpRun
    8 JOIN warpInputExp
    9     USING(warp_id)
    108JOIN camProcessedExp
    11     ON warpInputExp.cam_id = camProcessedExp.cam_id
     9    USING(cam_id)
    1210JOIN chipRun
    13     ON camProcessedExp.chip_id = chipRun.chip_id
     11    USING(chip_id)
    1412JOIN rawExp
    15     ON chipRun.exp_id = rawExp.exp_id
     13    USING(exp_id)
    1614LEFT JOIN warpSkyCellMap
    17     ON warpInputExp.warp_id = warpSkyCellMap.warp_id
    18     AND warpInputExp.cam_id = warpSkyCellMap.cam_id
     15    USING(warp_id, cam_id)
    1916WHERE
    2017    warpRun.state = 'run'
Note: See TracChangeset for help on using the changeset viewer.