NumCpp  2.12.1
A Templatized Header Only C++ Implementation of the Python NumPy Library
AERtoENU.hpp
Go to the documentation of this file.
1
28#pragma once
29
34
36{
44 [[nodiscard]] inline reference_frames::ENU AERtoENU(const reference_frames::AER aer) noexcept
45 {
46 return NEDtoENU(AERtoNED(aer));
47 }
48} // 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::ENU NEDtoENU(const reference_frames::NED &point) noexcept
Converts NED to ENU.
Definition: NEDtoENU.hpp:41
reference_frames::NED AERtoNED(const reference_frames::AER aer) noexcept
Converts the spherical inertial coordinates (NED) to Cartesian XYZ (NED). NOTE: positive elevation is...
Definition: AERtoNED.hpp:44
reference_frames::ENU AERtoENU(const reference_frames::AER aer) noexcept
Converts the spherical inertial coordinates (NED) to Cartesian XYZ (ENU). NOTE: positive elevation is...
Definition: AERtoENU.hpp:44