IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 4, 2021, 6:11:39 PM (5 years ago)
Author:
eugene
Message:

merge changes from eam_branches/ipp-dev-20210817 (use new API to set extra orders from recipe))

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/pswarp/src/pswarpMapGrid.c

    r41538 r41897  
    4444    for (ni = 0, i = xMin; ni < nXpts; i += nXpix, ni++) {
    4545        for (nj = 0, j = yMin; nj < nYpts; j += nYpix, nj++) {
     46//        pswarpMapSetLocalModel (grid->maps[ni][nj], dest, src, i, j, nXpix, nYpix);
    4647            pswarpMapSetLocalModel (grid->maps[ni][nj], dest, src, i, j);
    4748        }
     
    196197 * astrometric transformations are supplied for the parent image coordinate frame.
    197198 */
     199// bool pswarpMapSetLocalModel (pswarpMap *map, pmReadout *dest, pmReadout *src, int ix, int iy, int dX, int dY) {
    198200bool pswarpMapSetLocalModel (pswarpMap *map, pmReadout *dest, pmReadout *src, int ix, int iy) {
    199201
     
    234236
    235237    /** V(1,0) position */
     238//  offset->x = ix + dX;
    236239    offset->x = ix + 1;
    237240    offset->y = iy;
     
    246249    offset->x = ix;
    247250    offset->y = iy + 1;
     251//  offset->y = iy + dY;
    248252    psPlaneTransformApply(FP, chipSrc->toFPA, offset);
    249253    psPlaneTransformApply (TP, fpaSrc->toTPA, FP);
Note: See TracChangeset for help on using the changeset viewer.