IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 34436


Ignore:
Timestamp:
Sep 12, 2012, 11:31:10 AM (14 years ago)
Author:
mhuber
Message:

(MEH) fixing simple plot bugs

Location:
trunk/ippMonitor/def
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippMonitor/def/simplePlotSkycalImage.d

    r34434 r34436  
    1 TABLE staticskyRun, staticskyInput, stackRun, skycell
    2 TITLE New sky plot - staticsky
    3 FILE  simplePlotStaticskyImage.php
     1TABLE skycalRun, skycalResult, stackRun, skycell
     2TITLE New sky plot - skycal
     3FILE  simplePlotSkycalImage.php
    44MENU  ipp.plots.dat
    55
    66WHERE skycalRun.state != 'new'
     7WHERE skycalRun.skycal_id = skycalResult.skycal_id
    78WHERE skycalRun.stack_id = stackRun.stack_id
    89WHERE stackRun.skycell_id = skycell.skycell_id
     
    1314FIELD staticskyRun.sky_id,        5, %d,     Staticsky ID,    restrict
    1415FIELD stackRun.stack_id,          5, %d,     Stack ID,        restrict
    15 FIELD skycalRun.label,            10, %s,     Label,          restrict
    16 FIELD skycell.radeg,              8, %C,     RA,              restrict
    17 FIELD skycell.decdeg,             8, %C,     DEC,             restrict
     16FIELD skycalRun.label,           10, %s,     Label,           restrict
     17FIELD skycell.radeg,             10, %.6f,   RA (deg),        restrict
     18FIELD skycell.decdeg,            10, %.6f,   DEC (deg),       restrict
    1819FIELD stackRun.filter,           10, %s,     FILTER,          restrict
     20FIELD skycalResult.sigma_ra,      5, %.2f,   sigma_ra,        restrict
     21FIELD skycalResult.sigma_dec,     5, %.2f,   sigma_dec,       restrict
     22FIELD skycalResult.zpt_obs,       5, %.2f,   zpt_obs,         restrict
     23FIELD skycalResult.zpt_stdev,     5, %.2f,   zpt_stdev,       restrict
     24FIELD skycalResult.quality,       5, %d,     quality,         restrict
    1925
    2026# What to plot
  • trunk/ippMonitor/def/simplePlotStackImage.d

    r34432 r34436  
    1 TABLE stackRun, skycell
     1TABLE stackRun, stackSumSkyfile, skycell
    22TITLE New sky plot - stack
    33FILE  simplePlotStackImage.php
     
    55
    66WHERE stackRun.state != 'new'
     7WHERE stackRun.stack_id = stackSumSkyfile.stack_id
    78WHERE stackRun.skycell_id = skycell.skycell_id
    89WHERE stackRun.tess_id = skycell.tess_id
     
    1112FIELD stackRun.stack_id,          5, %d,     Stack ID,        restrict
    1213FIELD stackRun.label,            10, %s,     Label,           restrict
    13 FIELD skycell.radeg,              8, %C,     RA,              restrict
    14 FIELD skycell.decdeg,             8, %C,     DEC,             restrict
     14FIELD skycell.radeg,             10, %.6f,   RA (deg),        restrict
     15FIELD skycell.decdeg,            10, %.6f,   DEC (deg),       restrict
    1516FIELD stackRun.filter,           10, %s,     FILTER,          restrict
     17FIELD stackSumSkyfile.bg,         5, %.2f,   BG,              restrict
     18FIELD stackSumSkyfile.bg_stdev,   5, %.2f,   BG STDEV,        restrict
     19FIELD stackSumSkyfile.good_frac,  5, %.2f,   good_frac,       restrict
     20FIELD stackSumSkyfile.quality,    5, %d,     quality,         restrict
     21
    1622
    1723# What to plot
  • trunk/ippMonitor/def/simplePlotStaticskyImage.d

    r34434 r34436  
    1 TABLE staticskyRun, staticskyInput, stackRun, skycell
     1TABLE staticskyRun, staticskyResult, staticskyInput, stackRun, skycell
    22TITLE New sky plot - staticsky
    33FILE  simplePlotStaticskyImage.php
     
    55
    66WHERE staticskyRun.state != 'new'
     7WHERE staticskyRun.sky_id = staticskyResult.sky_id
    78WHERE staticskyRun.sky_id = staticskyInput.sky_id
    89WHERE staticskyInput.stack_id = stackRun.stack_id
     
    1314FIELD staticskyRun.sky_id,        5, %d,     Staticsky ID,    restrict
    1415FIELD stackRun.stack_id,          5, %d,     Stack ID,        restrict
    15 FIELD staticskyRun.label,         10, %s,     Label,          restrict
    16 FIELD skycell.radeg,              8, %C,     RA,              restrict
    17 FIELD skycell.decdeg,             8, %C,     DEC,             restrict
     16FIELD staticskyRun.label,        10, %s,     Label,           restrict
     17FIELD skycell.radeg,             10, %.6f,   RA (deg),        restrict
     18FIELD skycell.decdeg,            10, %.6f,   DEC (deg),       restrict
    1819FIELD stackRun.filter,           10, %s,     FILTER,          restrict
     20FIELD staticskyResult.num_inputs, 5, %d,     num_inputs,      restrict
     21FIELD staticskyResult.quality,    5, %d,     quality,         restrict
    1922
    2023# What to plot
Note: See TracChangeset for help on using the changeset viewer.