aboutsummaryrefslogtreecommitdiff
path: root/pkg/tbtables/fitsio/ftdtyp.f
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
commitfa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch)
treebdda434976bc09c864f2e4fa6f16ba1952b1e555 /pkg/tbtables/fitsio/ftdtyp.f
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'pkg/tbtables/fitsio/ftdtyp.f')
-rw-r--r--pkg/tbtables/fitsio/ftdtyp.f35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkg/tbtables/fitsio/ftdtyp.f b/pkg/tbtables/fitsio/ftdtyp.f
new file mode 100644
index 00000000..c42410b3
--- /dev/null
+++ b/pkg/tbtables/fitsio/ftdtyp.f
@@ -0,0 +1,35 @@
+C----------------------------------------------------------------------
+ subroutine ftdtyp(value,dtype,status)
+
+C determine datatype of a FITS value field
+C This assumes value field conforms to FITS standards and may not
+C detect all invalid formats.
+C value c input value field from FITS header record only,
+C (usually the value field is in columns 11-30 of record)
+C The value string is left justified.
+C dtype c output type (C,L,I,F) for Character string, Logical,
+C Integer, Floating point, respectively
+C
+C written by Wm Pence, HEASARC/GSFC, February 1991
+
+ character*(*)value,dtype
+ integer status
+
+ if (status .gt. 0)return
+
+ dtype=' '
+
+ if (value(1:1) .eq. '''')then
+C character string
+ dtype='C'
+ else if (value(1:1).eq.'T' .or. value(1:1).eq.'F')then
+C logical
+ dtype='L'
+ else if (index(value,'.') .gt. 0)then
+C floating point
+ dtype='F'
+ else
+C assume it must be an integer, since it isn't anything else
+ dtype='I'
+ end if
+ end