IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 23, 2004, 4:46:45 PM (22 years ago)
Author:
gusciora
Message:

...

File:
1 edited

Legend:

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

    r1287 r1293  
    1010 *  @author George Gusciora, MHPCC
    1111 *
    12  *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-07-23 03:13:39 $
     12 *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-07-24 02:42:59 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2727typedef struct
    2828{
    29     double x;    ///< x position
    30     double y;    ///< y position
     29    double x;      ///< x position
     30    double y;      ///< y position
    3131    double xErr;   ///< Error in x position
    3232    double yErr;   ///< Error in y position
     
    3636typedef struct
    3737{
    38     double r;    ///< RA
    39     double d;    ///< Dec
     38    double r;      ///< RA
     39    double d;      ///< Dec
    4040    double rErr;   ///< Error in RA
    4141    double dErr;   ///< Error in Dec
     
    6363    double sinNPlat;   ///< sin of North Pole latitude
    6464    double cosNPlat;   ///< cos of North Pole latitude
    65     double sinZP;   ///< sin of Forst PT os Ares lon
    66     double cosZP;   ///< cos of Forst PT os Ares lon
     65    double sinZP;      ///< sin of Forst PT os Ares lon
     66    double cosZP;      ///< cos of Forst PT os Ares lon
    6767}
    6868psSphereTransform;
    6969
    7070typedef enum {
    71     PS_PROJ_TAN,   ///< Tangent projection
    72     PS_PROJ_SIN,   ///< Sine projection
    73     PS_PROJ_AIT,   ///< Aitoff projection
    74     PS_PROJ_PAR,   ///< Par projection
    75     PS_PROJ_GLS,   ///< GLS projection
    76     PS_PROJ_NTYPE   ///< Number of types; must be last.
     71    PS_PROJ_TAN,       ///< Tangent projection
     72    PS_PROJ_SIN,       ///< Sine projection
     73    PS_PROJ_AIT,       ///< Aitoff projection
     74    PS_PROJ_PAR,       ///< Par projection
     75    PS_PROJ_GLS,       ///< GLS projection
     76    PS_PROJ_CAR,       ///< CAR projection
     77    PS_PROJ_MER,       ///< MER projection
     78    PS_PROJ_NTYPE      ///< Number of types; must be last.
    7779} psProjectionType;
    7880
    7981typedef struct
    8082{
    81     double R;    ///< Coordinates of projection center
    82     double D;    ///< Coordinates of projection center
     83    double R;     ///< Coordinates of projection center
     84    double D;     ///< Coordinates of projection center
    8385    double Xs;    ///< plate-scale in X direction
    8486    double Ys;    ///< plate-scale in Y direction
     
    128130                   const psProjection *projection);
    129131
    130 psSphere *psProject(const psPlane *coord,
    131                     const psProjection *projection);
     132psSphere *psDeproject(const psPlane *coord,
     133                      const psProjection *projection);
    132134
    133135psSphere *psSphereGetOffset(const psSphere *restrict position1,
Note: See TracChangeset for help on using the changeset viewer.