FACT++  1.0
double eraS06a ( double  date1,
double  date2 
)

Definition at line 3 of file s06a.c.

References eraBpn2xy(), eraPnm06a(), and eraS06().

Referenced by t_s06a().

77 {
78  double rnpb[3][3], x, y, s;
79 
80 /* Bias-precession-nutation-matrix, IAU 20006/2000A. */
81  eraPnm06a(date1, date2, rnpb);
82 
83 /* Extract the CIP coordinates. */
84  eraBpn2xy(rnpb, &x, &y);
85 
86 /* Compute the CIO locator s, given the CIP coordinates. */
87  s = eraS06(date1, date2, x, y);
88 
89  return s;
90 
91 }
void eraPnm06a(double date1, double date2, double rnpb[3][3])
Definition: pnm06a.c:3
void eraBpn2xy(double rbpn[3][3], double *x, double *y)
Definition: bpn2xy.c:3
double eraS06(double date1, double date2, double x, double y)
Definition: s06.c:3

+ Here is the call graph for this function:

+ Here is the caller graph for this function: