diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /pkg/tbtables/fitsio/ftppne.f | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'pkg/tbtables/fitsio/ftppne.f')
-rw-r--r-- | pkg/tbtables/fitsio/ftppne.f | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pkg/tbtables/fitsio/ftppne.f b/pkg/tbtables/fitsio/ftppne.f new file mode 100644 index 00000000..ca87a68b --- /dev/null +++ b/pkg/tbtables/fitsio/ftppne.f @@ -0,0 +1,31 @@ +C---------------------------------------------------------------------- + subroutine ftppne(ounit,group,felem,nelem,array,nulval,status) + +C Write an array of real 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 as the +C array being written). Any input pixels equal to the value of NULVAL +C will be replaced by the appropriate null value in the output FITS file. + +C ounit i Fortran output unit number +C group i number of the data group, if any +C felem i the first pixel to be written (this routine treats +C the primary array a large one dimensional array of +C values, regardless of the actual dimensionality). +C nelem i number of data elements to be written +C array r the array of values to be written +C nulval r pixel value used to represent an undefine pixel +C status i returned error stataus + +C written by Wm Pence, HEASARC/GSFC, June 1994 + + integer ounit,group,felem,nelem,status,row + real array(*),nulval + +C the primary array is represented as a binary table: +C each group of the primary array is a row in the table, +C where the first column contains the group parameters +C and the second column contains the image itself + row=max(group,1) + call ftpcne(ounit,2,row,felem,nelem,array,nulval,status) + end |