aboutsummaryrefslogtreecommitdiff
path: root/pkg/tbtables/fitsio/ftp2dd.f
diff options
context:
space:
mode:
authorJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
committerJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
commit40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch)
tree4464880c571602d54f6ae114729bf62a89518057 /pkg/tbtables/fitsio/ftp2dd.f
downloadiraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'pkg/tbtables/fitsio/ftp2dd.f')
-rw-r--r--pkg/tbtables/fitsio/ftp2dd.f29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkg/tbtables/fitsio/ftp2dd.f b/pkg/tbtables/fitsio/ftp2dd.f
new file mode 100644
index 00000000..359e70b9
--- /dev/null
+++ b/pkg/tbtables/fitsio/ftp2dd.f
@@ -0,0 +1,29 @@
+C--------------------------------------------------------------------------
+ subroutine ftp2dd(ounit,group,dim1,nx,ny,array,status)
+
+C Write a 2-d image of r*8 values into the primary array.
+C Data conversion and scaling will be performed if necessary
+C (e.g, if the datatype of the FITS array is not the same
+C as the array being written).
+
+C ounit i Fortran output unit number
+C group i number of the data group, if any
+C dim1 i actual first dimension of ARRAY
+C nx i size of the image in the x direction
+C ny i size of the image in the y direction
+C array d the array of values to be written
+C status i returned error stataus
+
+C written by Wm Pence, HEASARC/GSFC, June 1991
+
+ integer ounit,group,dim1,nx,ny,status
+ double precision array(dim1,*)
+ integer fpixel,row
+
+ fpixel=1
+ do 10 row = 1,ny
+ call ftpprd(ounit,group,fpixel,nx,array(1,row),status)
+ fpixel=fpixel+nx
+10 continue
+
+ end