File: man_list.html

package info (click to toggle)
munipack 0.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 33,104 kB
  • sloc: cpp: 29,677; sh: 4,909; f90: 2,872; makefile: 278; python: 140; xml: 72; awk: 12
file content (152 lines) | stat: -rw-r--r-- 4,345 bytes parent folder | download
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
<!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 ‒ Manual Page</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>

<h1>Listing</h1>

<p class="abstract">
Advanced listing of various quantities from processed FITS files.
</p>

<h2>Command</h2>

<code>
munipack list [...] file(s)
</code>

<h2>Description</h2>

<p>
This utility is prepared for listing of non-trivial quantities from FITS files
like the light curve, where some special operations (time determining,
magnitude difference, spherical coordinates) are required. Use manual
for <a href="man_fits.html">fits utility</a> to direct access of FITS
files.
</p>

<p>
Listing can be used in following modes:
</p>
<ul>
<li>star catalogue</li>
<li>light curve</li>
</ul>

<p>
Star catalogue mode prints all objects on a single frame for which photometry is available.
The star coordinates are defaulted to sphericals.
</p>

<p>
Light mode curve prints light curve (time and flux or magnitude) for a specified
object on a set of images.
</p>


<h2>Parameters</h2>

<ul>
<li><samp>-c</samp> print cat (star catalogue), lc (light curve, default)</li>
<li><samp>-s</samp> spherical coordinates (default)</li>
<li><samp>-p</samp> Cartesian coordinates (pixels)</li>
<li><samp>--col</samp> column(s) name(s) to list</li>
<li><samp>--key</samp> select header keyword(s)</li>
<li><samp>--mag</samp> output in magnitudes instead counts</li>
<li><samp>--flux</samp> output in fluxes instead counts</li>
<li><samp>--instr</samp> instrumental magnitudes (when --mag)</li>
<li><samp>--zero</samp> zero magnitude (in conjunction with --mag)</li>
<li><samp>--epoch</samp> reference Julian date for proper motion</li>
<li><samp>--aperture</samp> radius of aperture [pix], interpolated when needed</li>
<li><samp>--tol</samp> search radius [deg]</li>
<li><samp>--print-filename</samp> print filenames</li>
</ul>


<h2>Catalogue Listing</h2>

<div class="table">
<table>
<caption>Summary of parameters and quantities</caption>
<tr><th>parameters</th><th>Output</th></tr>
<tr><td>none</td><td>List measured counts <i>c</i></td></tr>
<tr><td>--mag</td><td>List instrumental magnitudes from counts
                      <i>m = 25 - 2.5 log10(c)</i> </td></tr>
<tr><td>--flux</td><td>List instrumental fluxes as counts per second and square meter
                       <i>f = c/(T A)</i></td></tr>
<tr><td>--mag --calibr</td><td>List magnitudes from counts using calibration
                      <i>m = 0 - 2.5 log10(fc0*c/TA)</i> </td></tr>

<tr><td>--flux --calibr</td><td>List fluxes using calibration in Watts per second and square meter
                       <i>f = fc0*c/(T A)</i></td></tr>
</table>
</div>

<h2>Examples</h2>

<p>
Print a catalogue from the file:
</p>
<code>
$ munipack list -c cat --mag --col apflux3,apflux3_err  M67_Blue.fits
</code>

<p>
Print a light curve from files:
</p>
<code>
$ munipack list 256,156 258,88 0716_*R.fits
</code>



<h2>See Also</h2>
<p><a href="lctut.html">Light Curve</a>, <a href="cmd.html">Color — Magnitude Diagram</a>,
<a href="man_com.html">Common options</a></p>

<footer>
  © 1997 – 2025
  <a href="https://integral.physics.muni.cz/" title="author's homepage"
   class="foot">Filip Hroch</a>
</footer>
</body>
</html>