IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 23, 2005, 1:54:43 PM (21 years ago)
Author:
gusciora
Message:

....

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astro/psCoord.c

    r5578 r5588  
    1010*  @author GLG, MHPCC
    1111*
    12 *  @version $Revision: 1.92 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2005-11-23 00:59:58 $
     12*  @version $Revision: 1.93 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2005-11-23 23:54:43 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    458458
    459459    // Remove plate scales
    460     psF64  x = coord->x * projection->Xs;
    461     psF64  y = coord->y * projection->Ys;
     460    // XXX: Verify this.  EAM suggested we do a multiply, however that does
     461    // not make sense if we also do the multiply in psProject().
     462    psF64  x = coord->x/projection->Xs;
     463    psF64  y = coord->y/projection->Ys;
    462464
    463465    // Perform inverse projection
Note: See TracChangeset for help on using the changeset viewer.