IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 22, 2004, 5:13:39 PM (22 years ago)
Author:
gusciora
Message:

...

File:
1 edited

Legend:

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

    r1285 r1287  
    1010 *  @author George Gusciora, MHPCC
    1111 *
    12  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-07-23 00:40:36 $
     12 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-07-23 03:13:39 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2121#include "psList.h"
    2222#include "psCoord.h"
     23#include "psMemory.h"
    2324
    2425
     
    2728                               const psPlane *coords)
    2829{
    29     return(NULL);
     30    if (out == NULL) {
     31        out = (psPlane *) psAlloc(sizeof(psPlane));
     32    }
     33    out->x = transform->x->coeff[0][0] +
     34             (transform->x->coeff[1][0] * coords->x) +
     35             (transform->x->coeff[0][1] * coords->y);
     36
     37    out->y = transform->y->coeff[0][0] +
     38             (transform->y->coeff[1][0] * coords->x) +
     39             (transform->y->coeff[0][1] * coords->y);
     40
     41    return(out);
    3042}
    3143
     
    3749                             float term4)
    3850{
    39     return(NULL);
     51    if (out == NULL) {
     52        out = (psPlane *) psAlloc(sizeof(psPlane));
     53    }
     54
     55    out->x = transform->x->coeff[0][0][0][0] +
     56             (transform->x->coeff[1][0][0][0] * coords->x) +
     57             (transform->x->coeff[0][1][0][0] * coords->y) +
     58             (transform->x->coeff[0][0][1][0] * term3) +
     59             (transform->x->coeff[0][0][0][1] * term4);
     60
     61    out->y = transform->y->coeff[0][0][0][0] +
     62             (transform->y->coeff[1][0][0][0] * coords->x) +
     63             (transform->y->coeff[0][1][0][0] * coords->y) +
     64             (transform->y->coeff[0][0][1][0] * term3) +
     65             (transform->y->coeff[0][0][0][1] * term4);
     66
     67    return(out);
    4068}
    4169
    4270
    4371
    44 psSphereTransform *psSphereTransform(double NPlon,
    45                                      double NPlat;
    46                                      double ZP)
     72psSphereTransform *psSphereTransformAlloc(double NPlon,
     73        double NPlat,
     74        double ZP)
    4775{
    48     return(NULL);
     76    psSphereTransform *tmp = (psSphereTransform *) psAlloc(sizeof(psSphereTransform));
     77
     78    tmp->sinNPlon = sin(NPlon);
     79    tmp->cosNPlon = cos(NPlon);
     80    tmp->sinNPlat = sin(NPlat);
     81    tmp->cosNPlat = cos(NPlat);
     82    tmp->sinZP = sin(ZP);
     83    tmp->cosZP = cos(ZP);
     84
     85    return(tmp);
    4986}
    5087
     
    5289void p_psSphereTransformFree(psSphereTransform *trans)
    5390{
    54     return(NULL);
     91    psFree(trans);
    5592}
    5693
     
    68105psSphereTransform *psSphereTransformICRStoEcliptic(void)
    69106{
     107    // sla_EQECL();
    70108    return(NULL);
    71109}
     
    73111psSphereTransform *psSphereTransformEcliptictoICRS(void)
    74112{
     113    // sla_ECLEQ();
    75114    return(NULL);
    76115}
     
    78117psSphereTransform *psSphereTransformICRStoGalatic(void)
    79118{
     119    // sla_EQGAL();
    80120    return(NULL);
    81121}
     
    83123psSphereTransform *psSphereTransformGalatictoICRS(void)
    84124{
     125    // sla_GALEQL();
    85126    return(NULL);
    86127}
Note: See TracChangeset for help on using the changeset viewer.