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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
|
/* File delhead.c
* September 25, 2009
* By Jessica Mink Harvard-Smithsonian Center for Astrophysics)
* Send bug reports to jmink@cfa.harvard.edu
Copyright (C) 1998-2009
Smithsonian Astrophysical Observatory, Cambridge, MA USA
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
#include <math.h>
#include "libwcs/fitsfile.h"
#define MAXKWD 500
#define MAXFILES 1000
static int maxnkwd = MAXKWD;
static int maxnfile = MAXFILES;
#define MAXNEW 1024
static void usage();
static void DelKeywords();
static void DelCOMMENT();
extern int DelWCSFITS();
extern char *fitserrmsg;
static int verbose = 0; /* verbose/debugging flag */
static int delwcs = 0; /* WCS deletion flag */
static int newimage = 0;
static int delcom = 0; /* If 1, delete blank COMMENT lines */
static int readimage = 0; /* Read and write image as well as header */
static int version = 0; /* If 1, print only program name and version */
static int logfile = 0;
static int nproc = 0;
static int overwrite = 0; /* If 1, overwrite input image */
static int first_file = 1;
static char *RevMsg = "DELHEAD WCSTools 3.9.7, 26 April 2022, Jessica Mink (jmink@cfa.harvard.edu)";
int
main (ac, av)
int ac;
char **av;
{
char *str;
char **kwd;
int nkwd = 0;
int nkwd1 = 0;
int ikwd;
int i;
char **fn, **newfn;
int nfile = 0;
int ifile;
int nbytes;
char filename[128];
FILE *flist = NULL;
FILE *fdk;
char *listfile;
char *ilistfile;
char *klistfile;
char **kwdnew;
ilistfile = NULL;
klistfile = NULL;
nfile = 0;
fn = (char **)calloc (maxnfile, sizeof(char *));
kwd = (char **)calloc (maxnkwd, sizeof(char *));
/* Check for help or version command first */
str = *(av+1);
if (!str || !strcmp (str, "help") || !strcmp (str, "-help"))
usage ();
if (!strcmp (str, "version") || !strcmp (str, "-version")) {
version = 1;
usage ();
}
/* crack arguments */
for (av++; --ac > 0; av++) {
if ((*(str = *av)) == '-') {
char c;
while ((c = *++str))
switch (c) {
case 'b': /* Leave blank lines at end after removing keywords */
setheadshrink (0);
readimage = 0;
break;
case 'c': /* Delete blank COMMENTs */
delcom++;
nkwd++;
break;
case 'l': /* Log files changed */
logfile++;
break;
case 'n': /* write new file */
newimage++;
break;
case 'o': /* overwrite file */
newimage++;
overwrite++;
break;
case 'v': /* more verbosity */
verbose++;
break;
case 'w': /* delete all WCS keywords */
delwcs++;
nkwd++;
break;
default:
usage();
break;
}
}
/* File containing a list of keywords or files */
else if (*av[0] == '@') {
listfile = *av + 1;
if (isimlist (listfile)) {
ilistfile = listfile;
nfile = getfilelines (ilistfile);
}
else {
klistfile = listfile;
nkwd1 = getfilelines (klistfile);
if (nkwd1 > 0) {
if (nkwd1 + nkwd > maxnkwd) {
maxnkwd = maxnkwd + nkwd1 + 32;
kwdnew = (char **)calloc (maxnkwd, sizeof(char *));
for (ikwd = 0; ikwd < nkwd; ikwd++)
kwdnew[ikwd] = kwd[ikwd];
free (kwd);
kwd = kwdnew;
}
if ((fdk = fopen (klistfile, "r")) == NULL) {
fprintf (stderr,"DELHEAD: File %s cannot be read\n",
klistfile);
}
else {
for (ikwd = 0; ikwd < nkwd1; ikwd++) {
kwd[nkwd] = (char *) calloc (32, 1);
first_token (fdk, 31, kwd[nkwd++]);
}
fclose (fdk);
}
}
}
}
/* Image file */
else if (isfits (*av) || isiraf (*av)) {
if (nfile >= maxnfile) {
maxnfile = maxnfile * 2;
nbytes = maxnfile * sizeof (char *);
newfn = (char **) calloc (maxnfile, sizeof (char *));
for (i = 0; i < nfile; i++)
newfn[i] = fn[i];
free (fn);
fn = newfn;
}
fn[nfile] = *av;
nfile++;
}
/* Keyword */
else {
if (nkwd >= maxnkwd) {
maxnkwd = maxnkwd * 2;
kwdnew = (char **) realloc ((void *)kwd, maxnkwd);
for (ikwd = 0; ikwd < nkwd; ikwd++)
kwdnew[ikwd] = kwd[ikwd];
free (kwd);
kwd = kwdnew;
}
kwd[nkwd] = *av;
nkwd++;
}
}
if (nkwd <= 0 && nfile <= 0 )
usage ();
else if (nkwd <= 0) {
fprintf (stderr, "DELHEAD: no keywords specified\n");
exit (1);
}
else if (nfile <= 0 ) {
fprintf (stderr, "DELHEAD: no files specified\n");
exit (1);
}
/* Delete keyword values one file at a time */
/* Open file containing a list of images, if there is one */
if (ilistfile != NULL) {
if ((flist = fopen (ilistfile, "r")) == NULL) {
fprintf (stderr,"DELHEAD: Image list file %s cannot be read\n",
ilistfile);
usage ();
}
}
/* Read through headers of images */
for (ifile = 0; ifile < nfile; ifile++) {
if (ilistfile != NULL) {
first_token (flist, 254, filename);
DelKeywords (filename, nkwd, kwd);
}
else
DelKeywords (fn[ifile], nkwd, kwd);
}
if (ilistfile != NULL)
fclose (flist);
return (0);
}
static void
usage ()
{
fprintf (stderr,"%s\n",RevMsg);
if (version)
exit (-1);
fprintf (stderr,"Delete FITS or IRAF header keyword entries\n");
fprintf(stderr,"Usage: [-nv] file1.fits [ ... filen.fits] kw1 [... kwn]\n");
fprintf(stderr," or : [-nv] @listfile kw1 [... kwn]\n");
fprintf(stderr," or : [-nv] file1.fits [ ... filen.fits] @keylistfile\n");
fprintf(stderr," or : [-nv] @listfile @keylistfile\n");
fprintf(stderr," -b: leave blank line in header for each deleted line\n");
fprintf(stderr," -c: delete blank COMMENT lines\n");
fprintf(stderr," -n: write new file\n");
fprintf(stderr," -o: overwrite file\n");
fprintf(stderr," -v: verbose\n");
fprintf(stderr," -w: delete all WCS keywords in header\n");
exit (1);
}
static void
DelKeywords (filename, nkwd, kwd)
char *filename; /* Name of FITS or IRAF image file */
int nkwd; /* Number of keywords to delete */
char *kwd[]; /* Names of those keywords */
{
char *header; /* FITS image header */
char *image; /* FITS image */
int lhead; /* Maximum number of bytes in FITS header */
int nbhead; /* Actual number of bytes in FITS header */
int nblold, nblnew; /* Number of FITS blocks (=2880 bytes) in header */
char *irafheader = NULL; /* IRAF image header */
int iraffile; /* 1 if IRAF image, 0 if FITS image */
int lext, lroot, naxis;
char newname[MAXNEW];
char *ext, *fname, *imext, *imext1;
char *kw, *kwl;
char kwi[10];
char echar;
int ikwd;
int fdr, fdw, ipos, nbr, nbw, bitpix, i;
int imageread = 0;
int nbold, nbnew;
image = NULL;
header = NULL;
/* Open IRAF image if .imh extension is present */
if (isiraf (filename)) {
iraffile = 1;
if ((irafheader = irafrhead (filename, &lhead)) != NULL) {
if ((header = iraf2fits (filename, irafheader, lhead, &nbhead)) == NULL) {
fprintf (stderr, "Cannot translate IRAF header %s/n",filename);
free (irafheader);
return;
}
}
else {
fprintf (stderr, "Cannot read IRAF file %s\n", filename);
return;
}
}
/* Open FITS file if .imh extension is not present */
else {
iraffile = 0;
setfitsinherit (0);
if ((header = fitsrhead (filename, &lhead, &nbhead)) != NULL) {
}
else {
fprintf (stderr, "Cannot read FITS file %s\n", filename);
return;
}
}
if (verbose && first_file) {
fprintf (stderr,"%s\n",RevMsg);
if (delwcs)
fprintf (stderr,"Delete Header WCS Parameter Entries from ");
else if (delcom)
fprintf (stderr,"Delete Blank COMMENT lines from ");
else
fprintf (stderr,"Delete Header Parameter Entries from ");
if (iraffile)
fprintf (stderr,"IRAF image file %s\n", filename);
else
fprintf (stderr,"FITS image file %s\n", filename);
first_file = 0;
}
if (nkwd < 1)
return;
nbold = fitsheadsize (header);
/* Remove directory path and extension from file name */
fname = strrchr (filename, '/');
if (fname)
fname = fname + 1;
else
fname = filename;
if (strchr (fname, ',') || strchr (fname,'['))
setheadshrink (0);
if (isiraf (filename))
readimage = 0;
if (newimage)
readimage = 1;
/* First, delete WCS keywords if requested */
if (delwcs) {
(void) DelWCSFITS (header, verbose);
nkwd--;
}
/* Then delete blank COMMENT lines if requested */
if (delcom) {
DelCOMMENT (header, verbose);
nkwd--;
}
/* Delete keywords one at a time */
for (ikwd = 0; ikwd < nkwd; ikwd++) {
/* Make keyword all upper case */
kwl = kwd[ikwd] + strlen (kwd[ikwd]);
for (kw = kwd[ikwd]; kw < kwl; kw++) {
if (*kw > 96 && *kw < 123)
*kw = *kw - 32;
}
/* Delete keyword */
if (hdel (header, kwd[ikwd])) {
if (verbose)
printf ("%s: %s deleted\n", filename, kwd[ikwd]);
}
/* If single-line keyword not found, try IRAF multiple-line format */
else {
i = 1;
sprintf (kwi, "%s_%03d", kwd[ikwd], i++);
while (hdel (header, kwi)) {
if (verbose)
printf ("%s: %s deleted\n", filename, kwi);
sprintf (kwi, "%s_%03d", kwd[ikwd], i++);
}
}
}
/* Compare size of output header to size of input header */
nbnew = fitsheadsize (header);
nblnew = (int) (0.98 + (double) nbnew / 2880.0);
nblold = (int) (0.98 + (double) nbold / 2880.0);
if (nbnew > nbold && naxis == 0 && bitpix != 0) {
if (verbose)
fprintf (stderr, "Rewriting primary header, copying rest of file\n");
newimage = 1;
}
/* Make up name for new FITS or IRAF output file */
if (newimage) {
ext = strrchr (fname, '.');
if (ext != NULL) {
lext = (fname + strlen (fname)) - ext;
lroot = ext - fname;
if (lroot > MAXNEW)
lroot = MAXNEW - 1;
strncpy (newname, fname, lroot);
newname[lroot] = (char) 0;
}
else {
lext = 0;
lroot = strlen (fname);
if (lroot > MAXNEW)
lroot = MAXNEW - 1;
strncpy (newname, fname, lroot);
newname[lroot] = (char) 0;
}
imext = strchr (fname, ',');
imext1 = NULL;
if (imext == NULL) {
imext = strchr (fname, '[');
if (imext != NULL) {
imext1 = strchr (fname, ']');
*imext1 = (char) 0;
}
}
if (imext != NULL && *(imext+1) != '0') {
strcat (newname, "_");
strcat (newname, imext+1);
}
if (fname)
fname = fname + 1;
else
fname = filename;
strcat (newname, "e");
if (lext > 0) {
if (imext != NULL) {
echar = *imext;
*imext = (char) 0;
strcat (newname, ext);
*imext = echar;
if (imext1 != NULL)
*imext1 = ']';
}
else
strcat (newname, ext);
}
}
else {
/* Keep name */
strcpy (newname, filename);
/* Set image extension if there is one */
imext = strchr (filename, ',');
if (imext == NULL)
imext = strchr (filename, '[');
/* Add extension if modifying extension header */
if (imext == NULL && ksearch (header,"XTENSION")) {
strcat (newname, ",1");
imext = strchr (newname,',');
}
}
if (nblnew == nblold && !newimage)
readimage = 0;
hgeti4 (header,"NAXIS",&naxis);
/* Write fixed header to output file */
if (iraffile) {
if (irafwhead (newname, lhead, irafheader, header) > 0 && verbose)
printf ("%s rewritten successfully.\n", newname);
else if (verbose)
printf ("%s could not be written.\n", newname);
free (irafheader);
}
/* If there is no data, write header by itself */
else if (bitpix == 0) {
if ((fdw = fitswhead (newname, header)) > 0) {
if (verbose)
printf ("%s: rewritten successfully.\n", newname);
close (fdw);
}
}
/* Rewrite only header if it fits into the space from which it was read */
else if (!readimage) {
if (!fitswexhead (newname, header)) {
if (verbose)
printf ("%s: rewritten successfully.\n", newname);
}
}
/* Rewrite header and data to a new image file */
else if (naxis > 0 && readimage) {
hgeti4 (header,"BITPIX",&bitpix);
if (naxis > 0 && bitpix != 0) {
if ((image = fitsrfull (filename, nbhead, header)) == NULL) {
if (verbose)
fprintf (stderr, "No FITS image in %s\n", filename);
imageread = 0;
}
else
imageread = 1;
}
if (fitswimage (newname, header, image) > 0 && verbose)
printf ("%s: rewritten successfully.\n", newname);
else if (verbose)
printf ("%s could not be written.\n", newname);
}
else {
if ((fdw = fitswhead (newname, header)) > 0) {
fdr = fitsropen (filename);
ipos = lseek (fdr, nbhead, SEEK_SET);
image = (char *) calloc (2880, 1);
while ((nbr = read (fdr, image, 2880)) > 0) {
nbw = write (fdw, image, nbr);
if (nbw < nbr)
fprintf (stderr,"SETHEAD: %d / %d bytes written\n",nbw,nbr);
}
close (fdr);
close (fdw);
if (verbose)
printf ("%s: rewritten successfully.\n", newname);
}
}
if (overwrite) {
rename (newname, filename);
if (verbose)
printf ("%s: overwritten successfully.\n", filename);
}
/* Log the processing of this file, if requested */
if (logfile) {
nproc++;
fprintf (stderr, "%d: %s processed.\r", nproc, newname);
}
if (header != NULL)
free (header);
if (image != NULL)
free (image);
return;
}
static void
DelCOMMENT (header, verbose)
char *header; /* FITS header */
int verbose; /* If true, print deletion confirmations */
{
char *hplace, *hcom, *v, *v2, *ve;
int i, killcom, nline;
int nkill = 0;
hplace = header;
while ((hcom = ksearch (hplace, "COMMENT"))) {
killcom = 1;
for (i = 7; i < 80; i++) {
if (hcom[i] != '=' && hcom[i] != ':' && hcom[i] != ' ' && hcom[i] != '\'')
killcom = 0;
}
if (killcom) {
if (verbose) {
nkill++;
nline = (hplace - header) / 80 + 1;
/* fprintf (stderr, "%3d %3d %70.70s\n", nkill, nline, hcom); */
}
/* Shift rest of header up one line */
if (newimage) {
ve = ksearch (header, "END");
for (v =hcom; v < ve; v = v + 80) {
v2 = v + 80;
strncpy (v, v2, 80);
}
/* Cover former last line with spaces */
v2 = ve + 80;
for (v = ve; v < v2; v++)
*v = ' ';
}
/* Fill line with blanks */
else {
for (i = 0; i < 80; i++)
hcom[i] = ' ';
hplace = hplace + 80;
}
}
/* Move on to next line if COMMENT line is OK */
else
hplace = hplace + 80;
}
if (verbose)
fprintf (stderr, "%d blank COMMENT lines deleted\n", nkill);
}
/* Jul 27 1998 New program
* Aug 6 1998 Change fitsio.h to fitsfile.h
* Aug 14 1998 If changing primary header, write out entire input file
* Oct 5 1998 Allow header changes even if no data is present
* Oct 5 1998 Use isiraf() and isfits() to check for data file
* Nov 30 1998 Add version and help commands for consistency
*
* Mar 2 1999 Add option to delete list of keyword names from file
* Apr 2 1999 Add warning if too many files or keywords on command line
* Apr 2 1999 Add -f and -m to change maximum number of files or keywords
* Jul 14 1999 Read lists of BOTH keywords and files simultaneously
* Jul 14 1999 Reallocate keyword array if too many in file
* Jul 15 1999 Reallocate keyword and file lists if default limits exceeded
* Sep 29 1999 Change maximum number of keywords from 100 to 500
* Oct 21 1999 Drop unused variables after lint
* Nov 29 1999 Fix usage command list
* Nov 30 1999 Cast realloc's
*
* Jun 8 2000 If no files or keywords specified, say so
*
* Dec 16 2002 Fix bug so arbitrary number of keywords can be deleted
*
* Aug 21 2003 Use fitsrfull() to deal with n dimensional FITS images
* Oct 29 2003 Keep count of keywords correctly when reading them from file
*
* May 6 2004 Allow keywords to be deleted from extension headers
* Jul 1 2004 Do not drop lines from multi-extension headers
* Jul 1 2004 Change first extension if no extension specified
*
* Jan 12 2005 Write over unread image only if number of header blocks same
* Mar 1 2005 Print program version only on first file if looping
* Jun 10 2005 Fix bug dealing with large numbers of keywords
*
* Apr 26 2006 Avoid freeing alread-freed image buffers
* May 23 2006 Add -b option to leave blank lines in header
* Jun 20 2006 Clean up code
*
* Jan 10 2007 Add int to readimage declaration
* Apr 18 2007 Add -w to delete all WCS keywords
* May 1 2007 Add -c to delete blank COMMENTs
* Jun 12 2007 Delete IRAF multiple line keywords
*
* Aug 19 2009 Fix bug to remove limit to the number of files on command line
* Sep 25 2009 Declare DelWCSFITS() and drop unused variable v1
*/
|