node function

double node(
  1. int p,
  2. double jde
)

Mean longitude of ascending node for planet p at jde, in radians.

Implementation

double node(int p, double jde) =>
    toRad(horner(j2000Century(jde), _cMean[p].n));