Changeset 14190 for trunk


Ignore:
Timestamp:
06/19/12 18:19:44 (12 years ago)
Author:
Daniela Dorner
Message:
added 8 new values: 4 for light conditions, 4 for temperature
Location:
trunk/Mars/datacenter/db
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/datacenter/db/fact_runinfo.php

    r14156 r14190  
    221221            $_GET["fAzimuthMean"]=$first?"On":"";
    222222
     223        if (empty($_GET["fMoonZenithDistance"]))
     224            $_GET["fMoonZenithDistance"]=$first?"Off":"";
     225
     226        if (empty($_GET["fMoonDisk"]))
     227            $_GET["fMoonDisk"]=$first?"Off":"";
     228
     229        if (empty($_GET["fAngleToMoon"]))
     230            $_GET["fAngleToMoon"]=$first?"Off":"";
     231
     232        if (empty($_GET["fSunZenithDistance"]))
     233            $_GET["fSunZenithDistance"]=$first?"Off":"";
     234
     235        if (empty($_GET["fCameraTempMean"]))
     236            $_GET["fCameraTempMean"]=$first?"Off":"";
     237
     238        if (empty($_GET["fCameraTempRms"]))
     239            $_GET["fCameraTempRms"]=$first?"Off":"";
     240
     241        if (empty($_GET["fOutsideTempMean"]))
     242            $_GET["fOutsideTempMean"]=$first?"Off":"";
     243
     244        if (empty($_GET["fOutsideTempRms"]))
     245            $_GET["fOutsideTempRms"]=$first?"Off":"";
     246
    223247    }
    224248
     
    279303        CheckBox("fRightAscension",       "RA");
    280304        CheckBox("fDeclination",          "Dec");
     305
     306        printf("  </tr>\n");
     307        printf("  <tr>\n");
     308
     309        CheckBox("fMoonZenithDistance",   "ZdMoon");
     310        CheckBox("fSunZenithDistance",    "ZdSun");
     311        CheckBox("fMoonDisk",             "MoonDisk");
     312        CheckBox("fAngleToMoon",          "Angle2Moon");
     313
     314        printf("  </tr>\n");
     315        printf("  <tr>\n");
     316
     317        CheckBox("fOutsideTempMean",      "temp mean");
     318        CheckBox("fOutsideTempRms",       "temp rms");
     319        CheckBox("fCameraTempMean",       "cam temp mean");
     320        CheckBox("fCameraTempRms",        "cam temp rms");
    281321
    282322        printf("  </tr>\n");
  • trunk/Mars/datacenter/db/factdefs.php

    r14156 r14190  
    5252     "fDeclination"                     => "Decl",
    5353     "fZenithDistanceMean"              => "Zd",
    54      "fAzimuthMean"              => "Az",
     54     "fMoonZenithDistance"              => "ZdMoon",
     55     "fMoonDisk"                        => "MoonDisk",
     56     "fAngleToMoon"                     => "Angle2Moon",
     57     "fSunZenithDistance"               => "ZdSun",
     58     "fAzimuthMean"                     => "Az",
     59     "fCameraTempMean"                  => "CamTemp",
     60     "fCameraTempRms"                   => "CamTempRms",
     61     "fOutsideTempMean"                 => "Temp",
     62     "fOutsideTempRms"                  => "TempRms",
    5563     //"Sec_to_time(Sum(Time_to_sec(TimeDiff(fRunStop,fRunStart))))" => "Time<br>[hh:mm:ss]",
    5664     //"Time [hh:mm:ss]" => "Time<br>[hh:mm:ss]",
Note: See TracChangeset for help on using the changeset viewer.