ecfToLookAngles function

Map<String, dynamic> ecfToLookAngles(
  1. dynamic observerGeodetic,
  2. dynamic satelliteEcf
)

Implementation

Map<String, dynamic> ecfToLookAngles(observerGeodetic, satelliteEcf) {
  final topocentricCoords = topocentric(observerGeodetic, satelliteEcf);
  return topocentricToLookAngles(topocentricCoords);
}