NumCpp  2.11.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
ENUtoAER.hpp
Go to the documentation of this file.
1 #pragma once
29 
34 
36 {
45  [[nodiscard]] inline reference_frames::AER ENUtoAER(const reference_frames::ENU& target) noexcept
46  {
47  return NEDtoAER(ENUtoNED(target));
48  }
49 } // namespace nc::coordinates::transforms
Az, El, Range coordinates.
Definition: AER.hpp:42
East North Up coordinates.
Definition: ENU.hpp:40
Definition: AERtoECEF.hpp:38
reference_frames::AER ENUtoAER(const reference_frames::ENU &target) noexcept
Converts the ENU coordinates to 2d speherical inertial coordinates. Range is not used....
Definition: ENUtoAER.hpp:45
reference_frames::NED ENUtoNED(const reference_frames::ENU &point) noexcept
Converts ENU to NED.
Definition: ENUtoNED.hpp:41
reference_frames::AER NEDtoAER(const reference_frames::NED &target) noexcept
Converts the Cartesian XYZ (NED) coordinates to 2d speherical inertial coordinates....
Definition: NEDtoAER.hpp:46