/usr/share/doc/munipack/man_env.html is in munipack-doc 0.5.10-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | <!DOCTYPE HTML>
<html lang="en">
<head>
<!-- meta -->
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="description" content="A general astronomical image processing software">
<meta name="author" content="Filip Hroch">
<link href="news_feed.xml" type="application/atom+xml" rel="alternate" title="Sitewide ATOM Feed" />
<link type="text/css" rel="stylesheet" href="munipack.css">
<link rel="shortcut icon" href="favicon.ico">
<title>Munipack ‒ Manual Page</title>
</head>
<body>
<header>
<a href="munipack.html"><img src="title_logo.png" alt="Munipack's logo" class="head"></a>
<div class="headhead">
<div class="headtitle">
<a class="headtitle" href="munipack.html">Munipack</a>
<a class="headsubtitle" href="munipack.html">A general astronomical image processing software</a>
</div>
<ul class="menu">
<li class="menu">◈ <a href="docs.html" class="menu">Documents</a></li>
<li class="menu">☺ <a href="guide.html" class="menu">User guide</a></li>
</ul>
</div>
</header>
<h1>Run-time Environment</h1>
<p class="abstract">
Setting of run-time environment can be used to modify of global parameters.
</p>
<h2 id="fitsenv">FITS environment variables</h2>
<p>
FITS environment variables are commonly used to redefine a value of keywords
of a FITS header.
For instance, FITS_KEY_FILTER - redefines FILTER keyword, etc. Other variables available
(sometimes required
during processing) are listed in <a href="man_setup.html">table</a>.
For example, when your local conventions
stores the exposure time in record labeled by EXPOSURE keyword
</p>
<pre>
...
EXPOSURE = 20.000 / [s] Exposure time
...
</pre>
<p>
use FITS_KEY_EXPTIME="EXPOSURE". Variables can be preset as:
</p>
<pre>
$ FITS_KEY_DATEOBS="DATE-BEG"
$ export FITS_KEY_DATEOBS
</pre>
<p>
For convenience, these variables can be set under Unixes as system-wide
in /etc/profile (or /etc/bash.profile, /etc/bashrc or etc.) or on per-user base in $HOME
directory: $HOME/.profile (or $HOME/.profile or $HOME/.bashrc or etc).
</p>
<p>
The identifiers (following prefix FITS_KEY_) should be
unlike to FITS keywords. That conversion
suppress confusion of the minus sign character (-) inside shell scripts.
</p>
<p>
The area of detector is <i>π(R<sup>2</sup>-r<sup>2</sup>)</i> for Newtonian reflector,
where <i>R</i> is radius of a primary mirror and <i>r</i> is radius of projection
of secondary mirror (of secondary shadow). The area of detector will be used
for photometry calibration.
</p>
<h2>Internationalization</h2>
<p>
There is effort to made Munipack locale-friendly. Unfortunately
locale setting will surprisingly interfere with both FITS
and Virtual Observatory pragmatic conventions
where non-Ascii characters are forbidden. The limitations
is much worse, just only <a href="http://en.wikipedia.org/wiki/ASCII">ASCII</a>
32 - 125 (in decimals) characters are allowed.
</p>
<p>
There are situations when use of locale-specific conventions
must respect:
</p>
<ul>
<li>Virtual Observatory supports just the dot as the floating-point separator.</li>
<li>Values in header and table of FITS must use dot as the floating-point separator.</li>
<li>FITS extended filenames (separation of dimensions by comma)</li>
</ul>
<p>
Typical encountered problems are decimal-point related.
Commas can be used both for separation of fractions
and separations of numbers each other. To prevent the
difficulty, one replaces <samp>X,Y</samp> to
<samp>"X Y"</samp> (comma is replaced by a space and enclosed
to apostrophes or quotes).
</p>
<p>
In doubts, it is recommended switch-off locales by the setup
</p>
<pre>
$ LC_ALL=C; export LC_ALL
</pre>
<p>
which will leave rest of your system unaffacted.
</p>
<h2>Run-time</h2>
<code>
MUNIPACK_LIBEXEC, MUNIPACK_BIN
</code>
<p>
Set path(s) for executable Munipack's <a href="modules.html">modules</a>.
The values are set during installation and used very rarely, perhaps
for testing purposes.
</p>
<code>
MUNIPACK_CATCONF_PATH
</code>
<p>
A path pointing to the local configuration file for Virtual Obseravtory
catalogues.
</p>
<footer>
<div style="float:left; margin-left:2em;">
Copyright © 1997 – 2018
Filip Hroch (<a style="text-decoration: none" href="mailto:hroch@physics.muni.cz?Subject=Munipack" title="Author's Email">✉</a>), license <a href="http://www.gnu.org/licenses/gpl.html">GPLv3</a>.
</div>
<div style="float:right; margin-right:2em; margin-top:-0.2em;">
<a href="http://monteboo.blogspot.com/search/label/Munipack" title="Munipack on MonteBoo Blog"><img src="favicon-blogger.png" alt="Blogger"></a>
<a href="http://www.muni.cz/?lang=en" title="Masaryk University in Brno, Czech Republic"><img src="mu-logo.png" alt="Masaryk University"></a>
<a href="news_feed.xml" title="Munipack's Releases in Atom Syndication Format"><img src="Feed-icon.png" alt="Atom Feed"></a>
</div>
</footer>
</body>
</html>
|