IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 11, 2016, 2:33:18 PM (10 years ago)
Author:
eugene
Message:

add skips for chips without a valid solution (do not just crash); add recipe value for PSASTRO.MODEL.REF.CHIP.ANGLE, the position angle expected for the reference chip for an exposure with PA = 0.0; posAngle needs to be adjusted to match reference chip target value; if the projection is not TAN or DIS when attempting bilevel mosaic fitting, re-fit the projection + distortion to be TAN + distortion

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/czw_branch/20160809/psastro/src/psastroDemoDump.c

    r26259 r39686  
    234234        if (!chip->process || !chip->file_exists || !chip->data_exists) { continue; }
    235235
     236        if (!chip->toFPA || !chip->fromFPA) {
     237          char *name = psMetadataLookupStr (NULL, chip->concepts, "CHIP.NAME");
     238          fprintf (stderr, "no astrom model for %s, skipping\n", name);
     239          continue;
     240        }
     241
    236242        // XXX write out the four corners for a test
    237243        psRegion *region = pmChipPixels (chip);
Note: See TracChangeset for help on using the changeset viewer.