toLmst method

double toLmst(
  1. double longitude
)

Calculate Local Mean Sidereal Time for this Julian date at the given longitude.

longitude The longitude, in radians, measured west from Greenwich.

The angle, in radians, measuring eastward from the Vernal Equinox to the given longitude.

Implementation

double toLmst(double longitude) {
  return (toGmst() + longitude) % _twopi;
}