diff options
author | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
commit | 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch) | |
tree | 4464880c571602d54f6ae114729bf62a89518057 /pkg/tbtables/tblfits.h | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'pkg/tbtables/tblfits.h')
-rw-r--r-- | pkg/tbtables/tblfits.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pkg/tbtables/tblfits.h b/pkg/tbtables/tblfits.h new file mode 100644 index 00000000..1e79ce56 --- /dev/null +++ b/pkg/tbtables/tblfits.h @@ -0,0 +1,25 @@ +# These definitions are for FITS BINTABLEs and the FITSIO interface. + +# These are values for the ORIGIN keyword to be added to new FITS files. +define FITS_ORIGIN "STScI-STSDAS/TABLES" +define FITS_ORIGIN_CMT "Tables version 2002-02-22" + +# These are the three possible values of hdutype (as returned by fsmahd, +# for example). +define TBL_FITS_IMAGE 0 # FITS IMAGE extension or primary HDU +define TBL_FITS_ASCII 1 # FITS ASCII table +define TBL_FITS_BINARY 2 # FITS BINTABLE + +# For defining 2-D char arrays. (values and names changed 1999 Mar 10 by PEH) +define SZ_FTTYPE 70 # size of character string for column name +define SZ_FTFORM 70 # size of character string for column format +define SZ_FTUNIT 70 # size of character string for column units + +# Undefined values for FITS BINTABLE. +define FITS_INDEFI (-2147483647) +define FITS_INDEFS (-32767) + +# Error return codes. +define FITS_END_OF_FILE 107 +define FITS_KEYWORD_MISSING 202 +define FITS_TNULL_NOT_SET 314 |