toGeodeticByDateTime method

LatLngAlt toGeodeticByDateTime(
  1. Planet planet,
  2. DateTime utc
)

Implementation

LatLngAlt toGeodeticByDateTime(Planet planet, DateTime utc) {
  final gmst = Julian.fromDateTime(utc).gmst;
  return toGeodetic(planet, gmst);
}