/usr/include/astrotcl/Fits_IO.h is in skycat 3.1.2+starlink1~b-3.
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 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 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | // -*-c++-*-
#ifndef _FitsIO_h_
#define _FitsIO_h_
/*
* E.S.O. - VLT project
*
* "@(#) $Id: Fits_IO.h,v 1.1.1.1 2009/03/31 14:11:53 cguirao Exp $"
*
* Fits_IO.h - declarations for class FitsIO, a class representing the
* contents of a FITS image file (or other image source)
*
* who when what
* -------------- -------- ----------------------------------------
* Allan Brighton 05/10/95 Created
* Peter W. Draper 10/01/00 Added getFitsFile member to allow access
* to fitsio file handle (used to access
* HDUs in derived/related classes).
* Peter W. Draper 04/02/00 Changed constness of write so that
* non-const member can be used within this
* member.
* 15/08/00 Made write virtual so it can be overriden.
* pbiereic 17/02/03 Revised byte-order issues
* Peter W. Draper 13/06/05 Made setHDU virtual so it can be overriden.
* 28/11/05 Made copy virtual so it can be overridden.
* 14/12/05 Moved setHDU and copy to the ImageIORep base
* class so that CompoundImageData does not
* need knowledge of this class (so that other
* ImageIORep implementations can be used in
* CompoundImages).
* 01/03/07 Added putcard member to write a header card
* without decomposition to kvc.
* pbiereic 17/02/03 Revised byte-order issues
* abrighto 02/01/05 Renamed .h file to avoid conflict with cfitsio's
* "fitsio.h" on case-ignoring file systems, such as
* Mac OSX.
* 16/03/09 Added getComment function.
* Peter W. Draper 29/30/09 Added length_ to support check of opened file
* length.
* pbiereic 12/08/07 added support for data types double and long long int
* pbiereic 07/09/07 added support for tiled-image compressed files
*/
#include <cstdio>
#include <iostream>
#include "ImageIO.h"
#include "fitsio.h"
/*
* This class manages reading and writing FITS files and storing the
* image data. It is derived from ImageIORep rather than class ImageIO
* for the sake of reference counting.
*/
class FitsIO : public ImageIORep {
private:
// set wcslib header length for searching
static void set_header_length(const Mem& header);
void set_header_length() const;
// make sure there is enough space in the header to insert/update a keyword
int checkKeywordSpace(const char* keyword);
// extend the size of the FITS header by one header block
int extendHeader();
static void* reallocFile(void* p, size_t newsize);
protected:
// PWD: Move here so that derived classes can manipulate (needed to get
// at HDU functions from ther
fitsfile* fitsio_; // handle to use for cfitsio C library routines
static FitsIO* fits_; // current class ptr for reallocFile callback
static size_t length_; // current mapped length for reallocFile callback
Mem primaryHeader_; // the primary header, if there is more than one HDU
Mem mergedHeader_; // the primary header merged with the current extension
// header, if applicable (The primary header is appended
// after the extension header).
// Check that this object represents a FITS file (and not just some kind of memory)
// and return 0 if it does. If not, return an error message.
int checkFitsFile();
// return 0 if this object represents a FITS file that was mapped for read/write
int checkWritable();
// write the keyword/value pair to the given open file descriptor.
static int put_keyword(FILE* f, const char* keyword, int value);
static int put_keyword(FILE* f, const char* keyword, double value);
static int put_keyword(FILE* f, const char* keyword, const char* value);
static int put_keyword(FILE* f, const char* keyword, char value);
// write keyword/value pair to the given stream.
static int put_keyword(ostream& os, const char* keyword, int value);
static int put_keyword(ostream& os, const char* keyword, double value);
static int put_keyword(ostream& os, const char* keyword, char* value);
static int put_keyword(ostream& os, const char* keyword, char value);
// round off file size
static void padFile(FILE* f, int size);
// Report a cfitsio error
static int cfitsio_error();
// return a cfitsio handle, given the Mem object for the FITS header.
static fitsfile* openFitsMem(Mem& header);
// flush any memory changes to the file
int flush();
// Return an allocated FitsIO object, given the Mem objects for the header and data
// and the cfitsio handle to use to access the file.
static FitsIO* initialize(Mem& header, Mem& data, fitsfile* fitsio);
public:
// constructor: init from given header and data and optional
// cfitsio handle.
FitsIO(int width, int height, int bitpix, double bzero,
double bscale, const Mem& header, const Mem& data,
fitsfile* fitsio = NULL);
// destructor
~FitsIO();
// Return a copy of this object that shares the data, but can have a different current HDU
virtual FitsIO* copy();
// initialize world coordinates (based on the image header)
int wcsinit();
// return the class name as a string
const char* classname() const {return "FitsIO";}
// read a FITS file and return a pointer to an allocated FitsIO object
// NULL if an error occurred
static FitsIO* read(const char* filename, int memOptions = 0);
// write the data to a FITS file
int write(const char *filename);
// compress or decompress the given file and return the new filename
// see comments in source file for details.
static const char* check_compress(const char* filename, char* buf, int bufsz,
int& istemp, int decompress_flag = 1,
int bitpix = 0);
// check if FITS binary table extension contains a compressed image
static const char* check_cfitsio_compress(char* filename, char* buf, int bufsz, int& istemp);
// Copy a compressed input image to an uncompressed output image
static int imcopy(char *infile, char *outfile);
// Return an allocated FitsIO object, given the Mem object for the file header
// (header.ptr() should point to the entire FITS file contents.)
static FitsIO* initialize(Mem& header);
// Return an allocated FitsIO object, given the Mem objects for the header and data.
static FitsIO* initialize(Mem& header, Mem& data);
// generate a blank image with a FITS header based on the given fields
static FitsIO* blankImage(double ra, double dec, double equinox,
double radius, int width, int height,
unsigned long color0);
// find and set value for the given FITS keyword and return 0 if OK (found)
int get(const char* keyword, double& val) const;
int get(const char* keyword, float& val) const;
int get(const char* keyword, int& val) const;
int get(const char* keyword, long& val) const;
int get(const char* keyword, long long& val) const;
int get(const char* keyword, unsigned char& val) const;
int get(const char* keyword, unsigned short& val) const;
int get(const char* keyword, short& val) const;
// find and return the value for the given FITS keyword, or NULL if not found
char* get(const char* keyword) const;
// find and return the comment for the given FITS keyword, or NULL if not found
char* getComment(const char* keyword) const;
// same as get(const char*), but you supply the buffer to hold the result
char* get(const char* keyword, char* buf, int bufsz) const;
// these are static versions of the above that require the cfitsio handle
static int get(fitsfile*, const char* keyword, double& val);
static int get(fitsfile*, const char* keyword, float& val);
static int get(fitsfile*, const char* keyword, int& val);
static int get(fitsfile*, const char* keyword, long& val);
static int get(fitsfile*, const char* keyword, unsigned char& val);
static int get(fitsfile*, const char* keyword, unsigned short& val);
static int get(fitsfile*, const char* keyword, short& val);
// find and return the value for the given FITS keyword, or NULL if not found
static char* get(fitsfile*, const char* keyword);
// write a (ASCII formatted) copy of the FITS header to the given stream.
int getFitsHeader(ostream& os) const;
// write data to disk (network byte ordered, NBO)
int fwriteNBO(char *data, int tsize, int size, FILE *f) const;
// Insert the given FITS keyword and value and return 0 if OK
// If there is not enough space in the header, the file size is
// automatically increased.
int put(const char* keyword, double val, const char* comment = NULL);
int put(const char* keyword, float val, const char* comment = NULL);
int put(const char* keyword, int val, const char* comment = NULL);
int put(const char* keyword, const char* val, const char* comment = NULL);
// Insert a formatted header card.
int putcard(const char* card);
// -- HDU access --
// Return the total number of HDUs
int getNumHDUs();
// Return the type of the current HDU as a string: "image", "ascii",
// or "binary" or NULL if there was as error.
const char* getHDUType();
// Return the index of the current HDU
int getHDUNum();
// Move to the specified HDU and make it the current one
virtual int setHDU(int num);
// Delete the given HDU
int deleteHDU(int num);
// -- Read Fits Tables --
// get the dimensions of the current FITS table
int getTableDims(long& rows, int& cols);
// return the table heading for the given column
char* getTableHead(int col);
// Return the value in the current FITS table at the given row and column
char* getTableValue(long row, int col, double scale = 1.0);
// get the contents of the given column as an array of doubles
int getTableColumn(int col, double* values, int numValues);
// -- Write Fits Tables --
// Create a FITS table and make it the current HDU
int createTable(const char* extname, long rows, int cols,
char** headings, char** tform, int asciiFlag = 0);
// Set the value in the current FITS table at the given row and column
// (For now, all data types are treated as strings)
int setTableValue(long row, int col, const char* value);
};
#endif /* _FitsIO_h_ */
|