marsStation2 function

double marsStation2(
  1. double year
)

JDE of second station of Mars nearest decimal year.

Implementation

double marsStation2(double year) {
  final p = _meanParts(year, _moA);
  return p.j + _sum(p.t, p.m, _ms2);
}