IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 5135


Ignore:
Timestamp:
Sep 26, 2005, 9:50:16 AM (21 years ago)
Author:
eugene
Message:

added config info, removed unused values

Location:
trunk/Ohana
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/doc/www/html/Elixir-Tools/mosastro.htm

    r5119 r5135  
    138138<h3> Elixir Configuration Data </h3>
    139139
     140Mosastro uses the following Elixir configuration variables:
    140141
     142<ul>
     143<li> EXPTIME-KEYWORD  : header keyword defining exposure time
     144<li> DATE-KEYWORD  : header keyword defining the date
     145<li> DATE-MODE  : mode for header date information: use a combination
     146of Ys, Ms, Ds to specify order.  If only 2 digits are specified for
     147the year, numbers greater than 50 are assumed in the 1900s, less than
     148in the 2000s.  eg YYYY/MM/DD
     149<li> UT-KEYWORD  : header keyword defining UT
     150<li> MJD-KEYWORD  : header keyword defining MJD
     151<li> JD-KEYWORD  : header keyword defining JD
     152
     153note that only one of the combination JD, MJD, or DATE/UT needs to be
     154defined.
     155
     156<li> ASTRO_REFCAT  : desired astrometric reference catalog.  allowed
     157values are <tt>GSC, USNO, 2MASS, PTOLEMY, STONE</tt>. 
     158
     159<li> USNO_CDROM  : directory where USNO data is stored
     160<li> STONE_DIR  : location of the Stone et al reference data
     161<li> 2MASS_DIR  : location of the 2MASS data
     162<li> CATDIR  : location of the ptolemy data
     163<li> GSCDIR  : location of the HST Guide Star Catalog
     164<li> GSCFILE  : location of the GSC layout file (for GSC and ptolemy)
     165
     166note that 'ptolemy' refers to data using the DVO format.  2MASS data
     167must be in a DVO format database.
     168
     169<li> RADIUS  : matching radius in arcsec to select reference stars
     170<li> SIGMA_LIM  : exclude stars with formal error larger than this
     171
     172<li> ZERO_PT  : default zero point, nominally 25.0.  don't set this to
     173a 'real' zero point.  it is used only for reference.
     174
     175<li> INST_MAG_MIN  : exclude stars brighter than this instrumental magnitude
     176<li> INST_MAG_MAX  : exclude stars fainter than this instrumental magnitude
     177<li> INST_BRIGHT  : use stars brighter than this value to measure
     178systematic error limit.
     179</ul>
     180 
    141181</pre>
    142182
  • trunk/Ohana/src/mosastro/src/ConfigInit.c

    r4828 r5135  
    1818
    1919  GetConfig (config, "USNO_CDROM",        "%s",  0, CDROM);
    20   GetConfig (config, "DATE-KEYWORD",      "%s",  0, DateKeyword);
    21   GetConfig (config, "DATE-MODE",         "%s",  0, DateMode);
    22   GetConfig (config, "UT-KEYWORD",        "%s",  0, UTKeyword);
    23   GetConfig (config, "MJD-KEYWORD",       "%s",  0, MJDKeyword);
    24   GetConfig (config, "JD-KEYWORD",        "%s",  0, JDKeyword);
    2520  ScanConfig (config, "2MASS_DIR",        "%s",  0, TWO_MASS_DIR);
    2621
    2722  GetConfig (config, "ASTRO_REFCAT",      "%s",  0, REFCAT);
    2823  ScanConfig (config, "CATDIR",           "%s",  0, CATDIR);
    29   ScanConfig (config, "CATMODE",                "%s",  0, CATMODE);
    30   ScanConfig (config, "CATFORMAT",              "%s",  0, CATFORMAT);
     24
    3125  ScanConfig (config, "GSCFILE",          "%s",  0, GSCFILE);
    3226  ScanConfig (config, "GSCDIR",           "%s",  0, GSC_DIR);
Note: See TracChangeset for help on using the changeset viewer.