IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 16, 2007, 11:56:49 AM (19 years ago)
Author:
jhoblitt
Message:

update camtool -queue

File:
1 edited

Legend:

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

    r14031 r14227  
    1 -- this query is used by both camtool -pendingexp & camtool -addprocessedexp it
    2 -- does a little more work then is necessary for -addprocessed but it seems
    3 -- "cleaner" to use the same query for both cases
    41SELECT
    52    *
    63FROM
    74    (SELECT DISTINCT
    8         chipRun.*
     5        chipRun.*,
     6        rawExp.camera,
     7        rawExp.telescope,
     8        rawExp.dateobs,
     9        rawExp.exp_tag,
     10        rawExp.exp_type,
     11        rawExp.filelevel,
     12        rawExp.filter,
     13        rawExp.airmass,
     14        rawExp.ra,
     15        rawExp.decl,
     16        rawExp.exp_time,
     17        rawExp.sat_pixel_frac,
     18        rawExp.bg,
     19        rawExp.bg_stdev,
     20        rawExp.bg_mean_stdev,
     21        rawExp.alt,
     22        rawExp.az,
     23        rawExp.ccd_temp,
     24        rawExp.posang,
     25        rawExp.object,
     26        rawExp.solang
    927    FROM chipRun
     28    JOIN rawExp
     29        using(exp_id)
    1030    WHERE
    1131        chipRun.state = 'stop') as Foo
Note: See TracChangeset for help on using the changeset viewer.