IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 24, 2004, 3:38:48 PM (22 years ago)
Author:
harman
Message:

Updated psTime for new version of SDRS

File:
1 edited

Legend:

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

    r1532 r1615  
    33*  @brief Contains basic coordinate transformation definitions and operations
    44*
    5 *  This file defines the basic types for astronomical coordinate 
     5*  This file defines the basic types for astronomical coordinate
    66*  transformation
    77*
     
    1010*  @author George Gusciora, MHPCC
    1111*
    12 *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2004-08-13 23:43:29 $
     12*  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2004-08-25 01:38:30 $
    1414*
    1515*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    196196psSphereTransform* psSphereTransformICRStoEcliptic(psTime time)
    197197{
    198     struct tm *tmTime = psTimeToTM(time);
     198    struct tm *tmTime = psTimeToTM(&time);
    199199    double year = (double)(1900 + tmTime->tm_year);
    200200    double T = year / 100.0;
     
    208208psSphereTransform* psSphereTransformEcliptictoICRS(psTime time)
    209209{
    210     struct tm *tmTime = psTimeToTM(time);
     210    struct tm *tmTime = psTimeToTM(&time);
    211211    double year = (double)(1900 + tmTime->tm_year);
    212212    double T = year / 100.0;
Note: See TracChangeset for help on using the changeset viewer.