summaryrefslogtreecommitdiffstats
path: root/funtools/fitsy/doc/fitsimage.html
diff options
context:
space:
mode:
Diffstat (limited to 'funtools/fitsy/doc/fitsimage.html')
-rw-r--r--funtools/fitsy/doc/fitsimage.html72
1 files changed, 72 insertions, 0 deletions
diff --git a/funtools/fitsy/doc/fitsimage.html b/funtools/fitsy/doc/fitsimage.html
new file mode 100644
index 0000000..934e68a
--- /dev/null
+++ b/funtools/fitsy/doc/fitsimage.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3.2//EN">
+<HTML>
+<HEAD>
+<TITLE> fitsimage
+</TITLE>
+<p>
+<!-- pnuts --> <a href="fitsy.html">[Previous]</a> <a href="headinit.html">[Next]</a> <a href="fitsy.html">[Up]</a> <a href="../mmtilib.html">[Top]</a>
+<META NAME="generator" CONTENT="txt2html v1.3">
+</HEAD>
+<BODY>
+
+
+<A NAME="section-1.1.1"><H3>NAME</H3></A>
+
+<P>
+ ft_simpleimageread,ft_simpleimagewrite,ft_imageread,ft_imagewrite -Fitsy FITS
+ routines to read and write FITS images.
+
+<A NAME="section-1.1.2"><H3>SYNOPSIS</H3></A>
+
+
+
+<PRE>
+int ft_simpleimageread(char *filename, FITSHead *headptr, void **dataptr, void ***data2dptr, int pixtype);
+int ft_simpleimagewrite(char *filename, FITSHead fits, float *data, int pixtype);
+int ft_imageread(File file, FITSHead *headptr, void **dataptr, void ***data2dptr, int pixtype);
+int ft_imagewrite(File file, FITSHead fits, float *data, int pixtype);
+
+
+<P>
+</PRE>
+<A NAME="section-1.1.3"><H3>PARAMETERS</H3></A>
+
+<UL>
+<P>
+ <LI> <B>char *filename</B> - FITS image file name.
+ <LI> <B>FITSHead *headptr</B> - Returned pointer to FITS header
+ <LI> <B>void **dataptr</B> - Returned pointer to FITS data.
+ <LI> <B>void ***data2dptr</B> - Returned edge vector to data.
+ <LI> <B>int pixtype</B> - pixtype to convert data to.
+ <LI> <B>FITSHead fits</B> - FITS header to write.
+ <LI> <B>float *data</B> - Data to write into FITS file.
+ <LI> <B>File file</B> - File pointer to read header and data from.
+
+</UL>
+<A NAME="section-1.1.4"><H3>DESCRIPTION</H3></A>
+
+
+<A NAME="section-1.1.4.1"><H4>ft_simpleimageread</H4></A>
+
+<P>
+ Read a FITS image from the named file.
+
+<A NAME="section-1.1.4.2"><H4>ft_simpleimagewrite</H4></A>
+
+<P>
+ Write a FITS image to a named file.
+
+<A NAME="section-1.1.4.3"><H4>ft_imageread</H4></A>
+
+<P>
+ Read a FITS image from a file pointer.
+
+<A NAME="section-1.1.4.4"><H4>ft_imagewrite</H4></A>
+
+<P>
+ Write a FITS image to a file.
+
+<p>
+<!-- pnuts --> <a href="fitsy.html">[Previous]</a> <a href="headinit.html">[Next]</a> <a href="fitsy.html">[Up]</a> <a href="../mmtilib.html">[Top]</a>
+</BODY>
+</HTML>