Changeset 15773
- Timestamp:
- Dec 7, 2007, 5:17:29 PM (18 years ago)
- Location:
- trunk/ippScripts/scripts
- Files:
-
- 2 edited
-
register_exp.pl (modified) (3 diffs)
-
register_imfile.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/register_exp.pl
r15740 r15773 57 57 # values to extract from output metadata and the stats to calculate 58 58 my $STATS = 59 [ 60 # PPSTATS KEYWORDSTATISTIC CHIPTOOL FLAG59 [ # register imfile 60 # label STATISTIC CHIPTOOL FLAG 61 61 { name => "exp_name", type => "constant", flag => "-exp_name", dtype => "string" }, # File level 62 62 { name => "telescope", type => "constant", flag => "-telescope", dtype => "string" }, # File level … … 66 66 { name => "exp_type", type => "constant", flag => "-exp_type", dtype => "string" }, # File level 67 67 { name => "filter", type => "constant", flag => "-filter", dtype => "string" }, # File level 68 { name => "comment", type => "constant", flag => "-comment", dtype => "string" }, # ObsComment 68 69 { name => "dateobs", type => "constant", flag => "-dateobs", dtype => "string" }, # File level 69 70 { name => "ccd_temp", type => "mean", flag => "-ccd_temp", dtype => "float" }, # CCD temperature … … 76 77 { name => "alt", type => "mean", flag => "-alt", dtype => "float" }, # Altitude 77 78 { name => "az", type => "mean", flag => "-az", dtype => "float" }, # Azimuth 78 { name => " M1_x", type => "constant", flag => "-M1_x", dtype => "float" }, # M1X79 { name => " M1_y", type => "constant", flag => "-M1_y", dtype => "float" }, # M1Y80 { name => " M1_z", type => "constant", flag => "-M1_z", dtype => "float" }, # M1Z81 { name => " M1_tip", type => "constant", flag => "-M1_tip", dtype => "float" }, # M1TIP82 { name => " M1_tilt", type => "constant", flag => "-M1_tilt", dtype => "float" }, # M1TILT83 { name => " M2_x", type => "constant", flag => "-M2_x", dtype => "float" }, # M2X84 { name => " M2_y", type => "constant", flag => "-M2_y", dtype => "float" }, # M2Y85 { name => " M2_z", type => "constant", flag => "-M2_z", dtype => "float" }, # M2Z86 { name => " M2_tip", type => "constant", flag => "-M2_tip", dtype => "float" }, # M2TIP87 { name => " M2_tilt", type => "constant", flag => "-M2_tilt", dtype => "float" }, # M2TILT79 { name => "m1_x", type => "constant", flag => "-m1_x", dtype => "float" }, # M1X 80 { name => "m1_y", type => "constant", flag => "-m1_y", dtype => "float" }, # M1Y 81 { name => "m1_z", type => "constant", flag => "-m1_z", dtype => "float" }, # M1Z 82 { name => "m1_tip", type => "constant", flag => "-m1_tip", dtype => "float" }, # M1TIP 83 { name => "m1_tilt", type => "constant", flag => "-m1_tilt", dtype => "float" }, # M1TILT 84 { name => "m2_x", type => "constant", flag => "-m2_x", dtype => "float" }, # M2X 85 { name => "m2_y", type => "constant", flag => "-m2_y", dtype => "float" }, # M2Y 86 { name => "m2_z", type => "constant", flag => "-m2_z", dtype => "float" }, # M2Z 87 { name => "m2_tip", type => "constant", flag => "-m2_tip", dtype => "float" }, # M2TIP 88 { name => "m2_tilt", type => "constant", flag => "-m2_tilt", dtype => "float" }, # M2TILT 88 89 { name => "env_temperature", type => "constant", flag => "-env_temperature", dtype => "float" }, # external temp 89 90 { name => "env_humidity", type => "constant", flag => "-env_humidity", dtype => "float" }, # external humidity 90 91 { name => "env_wind_speed", type => "constant", flag => "-env_wind_speed", dtype => "float" }, # external wind speed 91 92 { name => "env_wind_dir", type => "constant", flag => "-env_wind_dir", dtype => "float" }, # external wind direction 92 { name => "pon_time", type => "constant", flag => "-pon_time", dtype => "float" }, # time since last power on 93 94 { name => "-teltemp_m1", type => "constant", flag => "-teltemp_m1", dtype => "float" }, # Primary mirror temps (C) 95 { name => "-teltemp_m1cell", type => "constant", flag => "-teltemp_m1cell", dtype => "float" }, # Primary mirror support temps (C) 96 { name => "-teltemp_m2", type => "constant", flag => "-teltemp_m2", dtype => "float" }, # Secondary mirror temps (C 97 { name => "-teltemp_spider", type => "constant", flag => "-teltemp_spider", dtype => "float" }, # Spider temperatures (C) 98 { name => "-teltemp_truss", type => "constant", flag => "-teltemp_truss", dtype => "float" }, # Mid truss temperatures (C 99 { name => "-teltemp_extra", type => "constant", flag => "-teltemp_extra", dtype => "float" }, # Miscellaneous temperatures (C) 100 101 { name => "pon_time", type => "mean", flag => "-pon_time", dtype => "float" }, # time since last power on 93 102 { name => "bg", type => "mean", flag => "-bg", dtype => "float" }, # background 94 103 { name => "bg", type => "stdev", flag => "-bg_mean_stdev", dtype => "float" }, # Azimuth -
trunk/ippScripts/scripts/register_imfile.pl
r15740 r15773 69 69 { name => "FPA.OBSTYPE", type => "constant", flag => "-exp_type", dtype => "string" }, # Exposure type 70 70 { name => "FPA.FILTER", type => "constant", flag => "-filter", dtype => "string" }, # Filter used 71 { name => "FPA.COMMENT", type => "constant", flag => "-comment", dtype => "string" }, # Obs Comment 71 72 { name => "FPA.AIRMASS", type => "constant", flag => "-airmass", dtype => "float" }, # Airmass 72 73 { name => "FPA.RA", type => "constant", flag => "-ra", dtype => "float" }, # Right ascension … … 78 79 { name => "FPA.TELESCOPE", type => "constant", flag => "-telescope", dtype => "string" }, # Telescope 79 80 { name => "FPA.INSTRUMENT", type => "constant", flag => "-inst", dtype => "string" }, # Instrument 80 { name => "FPA.M1X", type => "constant", flag => "- M1_x", dtype => "float" }, # M1X81 { name => "FPA.M1Y", type => "constant", flag => "- M1_y", dtype => "float" }, # M1Y82 { name => "FPA.M1Z", type => "constant", flag => "- M1_z", dtype => "float" }, # M1Z83 { name => "FPA.M1TIP", type => "constant", flag => "- M1_tip", dtype => "float" }, # M1TIP84 { name => "FPA.M1TILT", type => "constant", flag => "- M1_tilt", dtype => "float" }, # M1TILT85 { name => "FPA.M2X", type => "constant", flag => "- M2_x", dtype => "float" }, # M2X86 { name => "FPA.M2Y", type => "constant", flag => "- M2_y", dtype => "float" }, # M2Y87 { name => "FPA.M2Z", type => "constant", flag => "- M2_z", dtype => "float" }, # M2Z88 { name => "FPA.M2TIP", type => "constant", flag => "- M2_tip", dtype => "float" }, # M2TIP89 { name => "FPA.M2TILT", type => "constant", flag => "- M2_tilt", dtype => "float" }, # M2TILT81 { name => "FPA.M1X", type => "constant", flag => "-m1_x", dtype => "float" }, # M1X 82 { name => "FPA.M1Y", type => "constant", flag => "-m1_y", dtype => "float" }, # M1Y 83 { name => "FPA.M1Z", type => "constant", flag => "-m1_z", dtype => "float" }, # M1Z 84 { name => "FPA.M1TIP", type => "constant", flag => "-m1_tip", dtype => "float" }, # M1TIP 85 { name => "FPA.M1TILT", type => "constant", flag => "-m1_tilt", dtype => "float" }, # M1TILT 86 { name => "FPA.M2X", type => "constant", flag => "-m2_x", dtype => "float" }, # M2X 87 { name => "FPA.M2Y", type => "constant", flag => "-m2_y", dtype => "float" }, # M2Y 88 { name => "FPA.M2Z", type => "constant", flag => "-m2_z", dtype => "float" }, # M2Z 89 { name => "FPA.M2TIP", type => "constant", flag => "-m2_tip", dtype => "float" }, # M2TIP 90 { name => "FPA.M2TILT", type => "constant", flag => "-m2_tilt", dtype => "float" }, # M2TILT 90 91 { name => "FPA.ENV.TEMP", type => "constant", flag => "-env_temperature", dtype => "float" }, # external temp 91 92 { name => "FPA.ENV.HUMID", type => "constant", flag => "-env_humidity", dtype => "float" }, # external humidity 92 93 { name => "FPA.ENV.WIND", type => "constant", flag => "-env_wind_speed", dtype => "float" }, # external wind speed 93 94 { name => "FPA.ENV.DIR", type => "constant", flag => "-env_wind_dir", dtype => "float" }, # external wind direction 95 96 { name => "FPA.TELTEMP.M1", type => "constant", flag => "-teltemp_m1", dtype => "float" }, # Primary mirror temps (C) 97 { name => "FPA.TELTEMP.M1CELL", type => "constant", flag => "-teltemp_m1cell", dtype => "float" }, # Primary mirror support temps (C) 98 { name => "FPA.TELTEMP.M2", type => "constant", flag => "-teltemp_m2", dtype => "float" }, # Secondary mirror temps (C 99 { name => "FPA.TELTEMP.SPIDER", type => "constant", flag => "-teltemp_spider", dtype => "float" }, # Spider temperatures (C) 100 { name => "FPA.TELTEMP.TRUSS", type => "constant", flag => "-teltemp_truss", dtype => "float" }, # Mid truss temperatures (C 101 { name => "FPA.TELTEMP.EXTRA", type => "constant", flag => "-teltemp_extra", dtype => "float" }, # Miscellaneous temperatures (C) 102 94 103 { name => "FPA.PON.TIME", type => "constant", flag => "-pon_time", dtype => "float" }, # time since last power on 95 104 { name => "CHIP.TEMP", type => "mean", flag => "-ccd_temp", dtype => "float" }, # CCD temperature
Note:
See TracChangeset
for help on using the changeset viewer.
