FACT++  1.0
void palPlante ( double  date,
double  elong,
double  phi,
int  jform,
double  epoch,
double  orbinc,
double  anode,
double  perih,
double  aorq,
double  e,
double  aorl,
double  dm,
double *  ra,
double *  dec,
double *  r,
int *  jstat 
)

Definition at line 269 of file palPlante.c.

References palEl2ue(), and palPlantu().

Referenced by t_planet().

272  {
273 
274  double u[13];
275 
276  /* Transform conventional elements to universal elements */
277  palEl2ue( date, jform, epoch, orbinc, anode, perih, aorq, e, aorl,
278  dm, u, jstat );
279 
280  /* If succcessful, make the prediction */
281  if (*jstat == 0) palPlantu( date, elong, phi, u, ra, dec, r, jstat );
282 
283 }
void palEl2ue(double date, int jform, double epoch, double orbinc, double anode, double perih, double aorq, double e, double aorl, double dm, double u[13], int *jstat)
Definition: palEl2ue.c:178
void palPlantu(double date, double elong, double phi, const double u[13], double *ra, double *dec, double *r, int *jstat)
Definition: palPlantu.c:126

+ Here is the call graph for this function:

+ Here is the caller graph for this function: