IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 17, 2010, 5:14:46 PM (16 years ago)
Author:
Paul Price
Message:

ppCoord now uses its own input file rules, rather than borrowing from pswarp and ppImage. Use of the WCS type makes it much faster (doesn't have to read in all the sources).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppViz/src/ppCoord/ppCoordCamera.c

    r27441 r27986  
    3333
    3434    fileArguments("ASTROM", data->astromName, "Input astrometry", data->config);
    35     pmFPAfile *astrom = pmFPAfileDefineFromArgs(&status, data->config, "PSWARP.ASTROM", "ASTROM"); // File
     35    pmFPAfile *astrom = pmFPAfileDefineFromArgs(&status, data->config, "PPCOORD.ASTROM", "ASTROM"); // File
    3636    if (!status || !astrom) {
    37         psError(PS_ERR_IO, false, "Failed to build file from PSWARP.ASTROM");
     37        psError(PS_ERR_IO, false, "Failed to build file from PPCOORD.ASTROM");
    3838        return false;
    3939    }
     
    4141    if (data->rawName) {
    4242        fileArguments("RAW", data->rawName, "Input raw image", data->config);
    43         pmFPAfile *raw = pmFPAfileDefineFromArgs(&status, data->config, "PPIMAGE.INPUT", "RAW"); // File
     43        pmFPAfile *raw = pmFPAfileDefineFromArgs(&status, data->config, "PPCOORD.RAW", "RAW"); // File
    4444        if (!status || !raw) {
    45             psError(PS_ERR_IO, false, "Failed to build file from PPIMAGE.INPUT");
     45            psError(PS_ERR_IO, false, "Failed to build file from PPCOORD.RAW");
    4646            return false;
    4747        }
Note: See TracChangeset for help on using the changeset viewer.