This file is indexed.

/usr/share/doc/munipack/chart.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
<!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 ‒ A Star Chart Tutorial</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>Star Charts</h1>

<p class="abstract">
How to create a star chart from a catalogue provided by Virtual Observatory.
</p>

<h1>Open Cluster NGC 637</h1>

<p>
NGC 637 is an open cluster in Cassiopeia. Stars are distributed
randomly but the look is similar to upside-down silhouette of owl:
Wings are spread and two brighter stars placed to its head suggests
big eyes. The cluster is looking pretty good in a binocular.
</p>

<h2>Catalogue Search</h2>

<p>
To get coordinates of NGC 637, we are searching a selected
catalogue UCAC5 with center α = 25.775° and δ = 64.03°
and the cone radius 0.1°:
</p>

<pre>
$ munipack cone -o ngc637.xml -c UCAC5 -r 0.1 25.775 64.03
</pre>

<p>
All found stars are saved to VOTable (Virtual Observatory transfer table).
</p>

<h2>Plotting</h2>

<p>
The output VOTable can be converted to SVG and be used for drawing of star charts:
</p>
<pre>
$ munipack votable -o ngc637.svg -pa 25.78 -pd 64.03 -ps 2000 -ml 12 \
         --col-mag f.mag --col-ra RAJ2000 --col-dec DEJ2000  ngc637.xml
$ firefox ngc637.svg
</pre>

<figure>
<img style="display: block; margin-left: auto; margin-right: auto;" width="400" height="400" src="ngc637.svg" alt="ngc637.svg" title="NGC 637">
<figcaption>Open Cluster NGC 637 (<a href="ngc637.svg">file</a>)</figcaption>
</figure>

<h2>Tips</h2>

<ul>
<li>Best viewed with Internet browsers (Firefox, Chrome).</li>
<li>Try interesting regions like globular clusters, neighborhood of bright galaxies</li>
<li>SVG format is a kind of XML format and can be easy modified: added text descriptions, graphics elements like axes, etc.</li>
<li>The output can be easy included to web pages.</li>
</ul>

<h2>See Also</h2>

<ul>
<li><a href="man_votable.html">VOTable</a></li>
<li><a href="man_cone.html">Cone Search</a></li>
</ul>

<footer>
<div style="float:left; margin-left:2em;">
Copyright &copy; 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>