1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
/*
This file was downloaded from the CFITSIO utilities web page:
http://heasarc.gsfc.nasa.gov/docs/software/fitsio/cexamples.html
That page contains this text:
You may freely modify, reuse, and redistribute these programs as you wish.
We assume it was originally written by the CFITSIO authors (primarily William
D. Pence).
We (the Astrometry.net team) have modified it slightly.
# Licensed under a 3-clause BSD style license - see LICENSE
*/
#include <string.h>
#include <stdio.h>
#include "fitsio.h"
int main(int argc, char *argv[])
{
fitsfile *fptr; /* FITS file pointer, defined in fitsio.h */
char keyname[FLEN_KEYWORD], colname[FLEN_VALUE], coltype[FLEN_VALUE];
int status = 0; /* CFITSIO status value MUST be initialized to zero! */
int single = 0, hdupos, hdutype, bitpix, naxis, ncols, ii;
long naxes[10], nrows;
if (argc != 2) {
printf("Usage: liststruc filename[ext] \n");
printf("\n");
printf("List the structure of a single extension, or, if ext is \n");
printf("not given, list the structure of the entire FITS file. \n");
printf("\n");
printf("Note that it may be necessary to enclose the input file\n");
printf("name in single quote characters on the Unix command line.\n");
return(0);
}
if (!fits_open_file(&fptr, argv[1], READONLY, &status))
{
fits_get_hdu_num(fptr, &hdupos); /* Get the current HDU position */
/* List only a single structure if a specific extension was given */
if (strchr(argv[1], '[') || strchr(argv[1], '+')) single++;
for (; !status; hdupos++) /* Main loop for each HDU */
{
fits_get_hdu_type(fptr, &hdutype, &status); /* Get the HDU type */
printf("\nHDU #%d ", hdupos);
if (hdutype == IMAGE_HDU) /* primary array or image HDU */
{
fits_get_img_param(fptr, 10, &bitpix, &naxis, naxes, &status);
printf("Array: NAXIS = %d, BITPIX = %d\n", naxis, bitpix);
for (ii = 0; ii < naxis; ii++)
printf(" NAXIS%d = %ld\n",ii+1, naxes[ii]);
}
else /* a table HDU */
{
fits_get_num_rows(fptr, &nrows, &status);
fits_get_num_cols(fptr, &ncols, &status);
if (hdutype == ASCII_TBL)
printf("ASCII Table: ");
else
printf("Binary Table: ");
printf("%d columns x %ld rows\n", ncols, nrows);
printf(" COL NAME FORMAT\n");
for (ii = 1; ii <= ncols; ii++)
{
fits_make_keyn("TTYPE", ii, keyname, &status); /* make keyword */
fits_read_key(fptr, TSTRING, keyname, colname, NULL, &status);
fits_make_keyn("TFORM", ii, keyname, &status); /* make keyword */
fits_read_key(fptr, TSTRING, keyname, coltype, NULL, &status);
printf(" %3d %-16s %-16s\n", ii, colname, coltype);
}
}
if (single)break; /* quit if only listing a single HDU */
fits_movrel_hdu(fptr, 1, NULL, &status); /* try move to next ext */
}
if (status == END_OF_FILE) status = 0; /* Reset normal error */
fits_close_file(fptr, &status);
}
if (status) fits_report_error(stderr, status); /* print any error message */
return(status);
}
|