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 /sys/imio/db/idb.h | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'sys/imio/db/idb.h')
-rw-r--r-- | sys/imio/db/idb.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sys/imio/db/idb.h b/sys/imio/db/idb.h new file mode 100644 index 00000000..327ce3d2 --- /dev/null +++ b/sys/imio/db/idb.h @@ -0,0 +1,24 @@ +# IDB.H -- Image header database interface. In this version of the interface +# the standard image header fields are maintained in binary in a fixed +# structure and the user fields are maintained in FITS format (text) in the +# a string buffer following the binary image header. + +define IDB_RECLEN 80 # length of a FITS record (card) +define IDB_STARTVALUE 10 # first column of value field +define IDB_ENDVALUE 30 # last column of value field +define IDB_LENNUMERICRECORD 80 # length of new numeric records +define IDB_LENSTRINGRECORD 80 # length of new string records +define IDB_SZFITSKEY 8 # max length FITS keyword + +# Standard header keywords accessible via the database interface. + +define I_CTIME 1 +define I_HISTORY 2 +define I_LIMTIME 3 +define I_MAXPIXVAL 4 +define I_MINPIXVAL 5 +define I_MTIME 6 +define I_NAXIS 7 +define I_PIXFILE 8 +define I_PIXTYPE 9 +define I_TITLE 10 |