Arguments appearing in italic are optional.call write_bintabh( tod, npix, ntod, header, nlheader, filename, [extno, firstpix, repeat] )
name & dimensionality | kind | in/out | description |
---|---|---|---|
tod(0:npix-1,1:ntod) | SP/ DP | IN | The map or tod to write to the FITS file. It will be written in the file at the location corresponding to pixels (or time samples) firstpix to firtpix + npix -1. |
npix | I8B | IN | Number of pixels or time samples in the map or TOD. See Note below. |
ntod | I4B | IN | Number of maps or tods to be written. Each of them will be in a different column of the FITS binary table. |
header(LEN=80) (1:nlheader) | CHR | IN | The header for the FITS file. |
nlheader | I4B | IN | number of header lines to write to the file. |
filename(LEN=filenamelen) | CHR | IN | The array is written into a FITS file with this filename. |
extno | I4B | IN | extension number in which to write the data (0 based). default:0 |
firstpix | I8B | IN | 0 Location in the FITS file of the first pixel (or time sample) to be written (0 based). default: 0. See Note below. |
repeat | I4B | IN | Length of the element vector used in the binary
table. default:1024 if npix
; 12000 if
npix and 1 otherwise. Choosing a large repeat for multi-column tables (ntod ) generally speeds up the I/O. It also helps bringing the number of rows of the table under , which is a hard limit of cfitsio. If the number of samples or pixels of each map or TOD is not a multiple of repeat, then the last element vector will be padded with sentinel values HPX_SBADVAL or HPX_DBADVAL. |
Writes into the FITS file `tod.fits' a 1 column binary table, where the first 40 data samples have the value and the next 20 have the value (Note that in this example the second call to write_bintabh overwrites some of the pixels written by the first call). The samples will be written in element vectors of length 10. The header for the FITS file is given in the string array hdr and its number of lines is 128.
Version 3.82, 2022-07-28