IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 3, 2007, 11:27:21 AM (19 years ago)
Author:
Paul Price
Message:

Merging branch with FITS compression development.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/fits/psFitsHeader.h

    r11248 r15179  
    44 * @author Robert DeSonia, MHPCC
    55 *
    6  * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
    7  * @date $Date: 2007-01-23 22:47:23 $
     6 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
     7 * @date $Date: 2007-10-03 21:27:21 $
    88 *
    99 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1818#include "psFits.h"
    1919#include "psMetadata.h"
     20
     21
     22/// Determine whether the current HDU is an empty PHU with a single compressed image following.
     23///
     24/// In that case, what should be treated as an image PHU is technically an empty PHU with a binary table
     25/// extension.  We test the current position, number of extensions, the FITS headers and presence of a
     26/// following compressed image to determine if this is the case.  If so, the FITS file pointer is left
     27/// pointing at the compressed image.
     28bool psFitsCheckSingleCompressedImagePHU(const psFits *fits, ///< FITS file pointer
     29                                         const psMetadata *header ///< Header, or NULL
     30    );
     31
     32/// Parse a string read from the FITS header.
     33
     34/// Removes the quotes, and any trailing spaces.  NOTE: the returned string is NOT on the psLib memory system
     35/// --- it's simply a hacked version of the input string.  Note also that the input string is MODIFIED.
     36char *p_psFitsHeaderParseString(char *string ///< String to parse
     37    );
    2038
    2139/** Reads the header of the current HDU.
Note: See TracChangeset for help on using the changeset viewer.