IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 6771 for trunk/stac/src/stac.c


Ignore:
Timestamp:
Apr 4, 2006, 12:06:11 PM (20 years ago)
Author:
Paul Price
Message:

Synching changes to psFitsReadImage (removed first argument) and psFitsWriteImage (added argument extname to end)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/stac/src/stac.c

    r5745 r6771  
    160160            image = psImageCopy(NULL, transformed->data[i], PS_TYPE_F32);
    161161            (void)psImageClipNaN(image, 0.0);
    162             if (!psFitsWriteImage(shiftFile, headers->data[i], image, 0)) {
     162            if (!psFitsWriteImage(shiftFile, headers->data[i], image, 0, NULL)) {
    163163                psErrorStackPrint(stderr, "Unable to write image: %s\n", shiftName);
    164164            }
     
    266266        psTrace("stac", 3, "Clipping %d NaN pixels to zero.\n", numPix);
    267267    }
    268     if (!psFitsWriteImage(outFile, headers->data[0], combined, 0)) {
     268    if (!psFitsWriteImage(outFile, headers->data[0], combined, 0, NULL)) {
    269269        psErrorStackPrint(stderr, "Unable to write image: %s\n", config->output);
    270270    }
Note: See TracChangeset for help on using the changeset viewer.