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
|
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- meta -->
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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 rel="stylesheet" href="munipack.css">
<link rel="shortcut icon" href="favicon.ico">
<title>Munipack ‒ Photometric Systems Transformation Table</title>
</head>
<body>
<header>
<a href="munipack.html"><img src="big_logo.png" alt="Munipack's logo" class="head"></a>
<div class="headtitles">
<p class="head">
<a class="headtitle" href="munipack.html">Munipack</a>
</p>
<p class="head">
<a class="headsubtitle" href="munipack.html">The astronomical image processing software</a>
</p>
</div>
<div class="buttons">
<a href="guide.html" class="button">
<div class="bicon">
📘
</div>
<div class="hide">
Guide
</div>
</a>
<a href="docs.html" class="button">
<div class="bicon">
📁
</div>
<div class="hide">
Documents
</div>
</a>
</div>
</header>
<section>
<h1 class="noindent">Photometric Systems Transformation Table</h1>
<p class="abstract">
Definition of a FITS table providing the transformation between
photometric systems.
</p>
<p>
The table is created by <samp>munipack phfotran</samp> action
and used by <samp>phcal</samp> action.
</p>
<p>
This specification has been developed for internal use in Munipack
and backward compatibility is not guarantied.
</p>
<h2>File Structure</h2>
<p>
The file has first HDU dummy without any machine-readable information
and just a short description and reference in comments.
</p>
<div class="table">
<table>
<caption>FITS file structure</caption>
<tr><th>HDU</th><th>EXTNAME</th><th>Description</th></tr>
<tr><td>0</td><td></td><td>Dummy<sup></sup></td></tr>
<tr><td>1</td><td>FOTRAN</td><td>The transformation table</td></tr>
</table>
</div>
<p>
The second HDU is a table with the transformation matrix.
EXTNAME is set to FOTRAN.
The header contains identifiers of input (instrumental) and output
(standard) photometry systems in keywords PHOTSYS1 and PHOTSYS2.
Amount of both columns and rows will generally variable and non-equal.
</p>
<div class="table">
<table>
<caption>FOTRAN extension keywords</caption>
<tr><th>Keyword</th><th>Value</th><th>Description</th></tr>
<tr><td>EXTNAME</td><td>FOTRAN</td><td>mandatory extension identifier</td></tr>
<tr><td>PHOTSYS1</td><td></td><td>instrumental photometry system</td></tr>
<tr><td>PHOTSYS2</td><td></td><td>standard photometry system</td></tr>
<tr><td>FILTER<i>i</i></td><td></td><td><i>i</i>-th standard filter</td></tr>
</table>
</div>
<p>
Columns of the table are named as instrumental filters. Rows
are equivalent filters. Lets elements of tables are <i>C<sub>i,j</sub></i>
than the values in the standard system (PHOTSYS2) are derived
from the instrumental system (PHOTSYS1) as
</p>
<p>
<p>
<i>
c'<sub>i</sub> = Σ<sub>j</sub> C<sub>ij</sub> c<sub>j</sub>
</i>
</p>
<p>
where <i>i,j = { B,V ...}</i> points on all available filters.
</p>
<div class="table">
<table>
<caption>Photometric System Transformation HDU Table</caption>
<tr><th>Column</th><th>Type</th><th>Description</th></tr>
<tr><td>FILTER</td><td>12A</td><td>Filter designation</td></tr>
<tr><td><i>C<sub>i1</sub></i></td><td>D</td><td>a coefficient</td></tr>
<tr><td><i>C<sub>i2</sub></i></td><td>D</td><td>a coefficient</td></tr>
<tr><td>..</td><td>D</td><td>a coefficient</td></tr>
<tr><td><i>C<sub>ij</sub></i></td><td>D</td><td>a coefficient</td></tr>
<tr><td>..</td><td>D</td><td>a coefficient</td></tr>
<tr><td><i>C<sub>iN</sub></i></td><td>D</td><td>a coefficient</td></tr>
</table>
</div>
<p>
The table can be created by hand, but the structure must be respected
and all identifiers included.
</p>
<h2>See Also</h2>
<p>
<a href="man_phfotran.html">Photometric System Transformation</a>,
<a href="man_phcal.html">Photometric Calibration</a>
</p>
</section>
<footer>
© 1997 – 2025
<a href="https://integral.physics.muni.cz/" title="author's homepage"
class="foot">Filip Hroch</a>
</footer>
</body>
</html>
|