46 const auto north =
aer.range * std::cos(
aer.el) * std::cos(
aer.az);
47 const auto east =
aer.range * std::cos(
aer.el) * std::sin(
aer.az);
48 const auto down =
aer.range * std::sin(-
aer.el);
49 return { north, east, down };
Az, El, Range coordinates.
Definition AER.hpp:42
North east down coordinates.
Definition NED.hpp:40
NdArray< dtype > arange(dtype inStart, dtype inStop, dtype inStep=1)
Definition arange.hpp:59