Template Function navtk::navutils::delta_lon_to_east(const B1&, const B2&, const B3&)
Defined in File navigation.hpp
Function Documentation
-
template<typename B1 = Vector, typename B2 = Vector, typename B3 = Vector, IfTensorsMaxDim<1, B1, B2, B3>* = nullptr>
Vector navtk::navutils::delta_lon_to_east(const B1 &delta_lon, const B2 &approx_lat, const B3 &altitude) This is a batched version of
delta_lon_to_east.This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
See also
- Template Parameters
B1 – Type of delta_lon.
B2 – Type of approx_lat.
B3 – Type of altitude.
std::enable_if_t<> – Constrains B1, B2, and B3 to have a maximum dimension of precisely 1.
- Parameters
delta_lon – Small distances in longitude to convert (radians), shape (N). Can accept initializer lists or a
doubleas well.approx_lat – Approximate latitudes (radians), shape (N). Can accept initializer lists or a
doubleas well.altitude – WGS-84 altitudes (ellipsoidal) (meters), shape (N). Can accept initializer lists or a
doubleas well. 0.0 by default.
- Returns
Equivalent distances in the east direction (meters), shape (N).