aboutsummaryrefslogtreecommitdiff
path: root/pkg/tbtables/fitsio/ftp3db.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/ftp3db.f
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'pkg/tbtables/fitsio/ftp3db.f')
-rw-r--r--pkg/tbtables/fitsio/ftp3db.f33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkg/tbtables/fitsio/ftp3db.f b/pkg/tbtables/fitsio/ftp3db.f
new file mode 100644
index 00000000..bf38e6f6
--- /dev/null
+++ b/pkg/tbtables/fitsio/ftp3db.f
@@ -0,0 +1,33 @@
+C--------------------------------------------------------------------------
+ subroutine ftp3db(ounit,group,dim1,dim2,nx,ny,nz,array,status)
+
+C Write a 3-d cube of byte 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 dim2 i actual second dimension of ARRAY
+C nx i size of the cube in the x direction
+C ny i size of the cube in the y direction
+C nz i size of the cube in the z direction
+C array c*1 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,dim2,nx,ny,nz,status
+ character*1 array(dim1,dim2,*)
+ integer fpixel,row,band
+
+ fpixel=1
+ do 20 band=1,nz
+ do 10 row = 1,ny
+ call ftpprb(ounit,group,fpixel,nx,array(1,row,band),status)
+ fpixel=fpixel+nx
+10 continue
+20 continue
+
+ end