Blob Blame History Raw
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML><HEAD><TITLE>Fitstopnm User Manual</TITLE></HEAD>
<BODY>
<H1>fitstopnm</H1>
Updated: 2 August 2015
<BR>
<A HREF="#index">Table Of Contents</A>

<H2>NAME</H2>
fitstopnm - convert a FITS file into a PNM image

<H2 id="synopsis">SYNOPSIS</H2>

<B>fitstopnm</B>
[<B>-image=</B><I>N</I>]
[<B>-scanmax</B>]
[<B>-printmax</B>]
[<B>-min=</B><I>f</I>]
[<B>-max=</B><I>f</I>]
[<b>-omaxval=</b><i>N</i>
[<I>FITSfile</I>]

<p>Minimum unique abbreviation of option is acceptable.  You may use double
hyphens instead of single hyphen to denote options.  You may use white
space in place of the equals sign to separate an option name from its value.


<H2 id="description">DESCRIPTION</H2>

<p>This program is part of <a href="index.html">Netpbm</a>.

<p><b>fitstopnm</b> reads a FITS (Flexible Image Transport System) file as
input and produces a PPM image if the FITS file consists of 3 image planes
(NAXIS = 3 and NAXIS3 = 3), or a PGM image if the FITS file consists of 2
image planes (NAXIS = 2), or if you specify the <B>-image</B> option.

<p>Note that the PPM image is highly unlikely to be a true PPM image, as it is
not normal for a FITS image to use the third axis as R, G, and B components of
the pixels.  The most common interpretation when there are 3 axes is that the
third one is time.  So the image is instead a pseudo-PPM in which the three
sample values of a pixel represent something other than color components, for
example gray levels at three instants (this variation on PPM is common in
programs such as <b>fitstopnm</b> that predate the PAM format).

<p>If you work with FITS images with 3 axes, you should probably always use
the <b>-image</b> option to avoid getting an unwanted pseudo-PPM image.

<P>The program tells you what kind of PNM image it is writing.


<H2 id="options">OPTIONS</H2>

<dl>

<dt><b>-image=</b><i>N</i>

<dd>This is for FITS files with three axes.  This option says that the third
axis is for multiple images, and the option value <i>N</i> tells which one you
want.

<dt><b>-omaxval=</b><i>N</i>

<P>This is the maxval that the output PNM image is to have.

<p>By default, the maxval is the least possible to retain all the
precision of the FITS input.  That means the difference between the
highest and lowest sample value in the input.  If the values range
from -5 to 100, for example, the default maxval would be 106 and each
PNM sample value would correspond to one FITS sample value.

<p>For a FITS input with floating point sample values, the precision is
essentially unlimited, so this is not possible.  In that case, the default
maxval is simply 255.

<p>This option was new in Netpbm 10.39 (June 2007).  Before that, the
output maxval is always the default.

<dt><b>-min=</b><I>float</I>
<dt><b>-max=</b><i>float</i>
<dd>

<P>You can use these options to override the min and max values as
read from the FITS header or the image data if the header has no
DATAMIN and DATAMAX keywords.

<dt><b>-scanmax</b>
<dd>
Use this option to force the program to scan the data even when the
header has DATAMIN and DATAMAX.

<dt><b>-printmax</b>

<dd>With this option, the program just prints the min and max values
and quits without doing its normal job.

<p>This is for use in shell programs.  Example:

<pre>
<code>
    eval 'fitstopnm -printmax $filename | \
    awk {min = $1; max = $2} \
          END {print "min=" min; " max=" max}'
</code>
</pre>

</dl>

<h2 id="notes">NOTES</h2>

<h3 id="pixelorder">Pixel Order</h3>

<p>You may need to pass the output of <b>fitstopnm</b> through <b>pamflip
-topbottom</b>.  See <a href="pamtofits.html#pixelorder"><b>pamtofits</b></a>


<H2 id="seealso">SEE ALSO</H2>

<A HREF="pamtofits.html">pamtofits</A>,
<A HREF="pamflip.html">pamflip</A>,
<A HREF="pgm.html">pgm</A>

<H2 id="author">AUTHOR</H2>

Copyright (C) 1989 by Jef Poskanzer, with modifications by Daniel
Briggs (<A HREF="mailto:dbriggs@nrao.edu">dbriggs@nrao.edu</A>) and
Alberto Accomazzi (<A
HREF="mailto:alberto@cfa.harvard.edu">alberto@cfa.harvard.edu</A>).


<HR>
<H2 id="index">Table Of Contents</H2>
<UL>
<LI><A HREF="#synopsis">SYNOPSIS</A>
<LI><A HREF="#description">DESCRIPTION</A>
<LI><A HREF="#options">OPTIONS</A>
<LI><A HREF="#notes">NOTES</A>
  <ul>
  <li><a href="#pixelorder">Pixel Order</a>
  </ul>
<LI><A HREF="#seealso">SEE ALSO</A>
<LI><A HREF="#author">AUTHOR</A>
</UL>
</BODY>
</HTML>