Header only single file C++ Implementation of pymap3d. API is similar to the $1000 Matlab Mapping toolbox.
#include "cppmap3d.hh"
double x = ..., y = ..., z = ...;
double x, y, z;
cppmap3d::geodetic2ecef(lat, lon, alt, x, y, z);
double az, el, range;
cppmap3d::geodetic2aer(lat, lon, alt, observer_lat, observer_lon, observer_alt, az, el, range);
If speed is important the library includes an alternative ecef2geodetic implementation that is faster according to this comparison. A microbenchmark is included in src/benchmarks
indicating about 2x the performance. However, this implementation does not handle degenerate cases as well.
#define CPPMAP3D_ECEF2GEODETIC_OLSON
#include "cppmap3d.hh"
double x = ..., y = ..., z = ...;
double lat, lon, alt;
cppmap3d::ecef2geodetic(x, y, z, lat, lon, alt);
Copy cppmap3d.hh
into your project files.
To install with cmake FetchContent
:
FetchContent_Declare(
cppmap3d
GIT_REPOSITORY https://github.com/ClancyWalters/cppmap3d
GIT_TAG 1.1.0
)
FetchContent_MakeAvailable(cppmap3d)
Tests run at C++11, use at own risk for older compiler versions.
aer2ecef aer2enu aer2geodetic aer2ned
ecef2aer ecef2enu ecef2geodetic ecef2ned
enu2aer enu2ecef enu2geodetic
geodetic2aer geodetic2ecef geodetic2enu geodetic2ned
ned2aer ned2ecef ned2geodetic
- AER: Azimuth, Elevation, Range
- ECEF: Earth-centered, Earth-fixed
- ENU: East North Up
- NED: North East Down
Unlike pymap3d this library cannot take advantage of SIMD by processing large vectorized inputs. This is non-trivial in C++ but feel free to submit a PR.
Doubles are used for all operations, if anyone wants to refactor for arbitrary precision, submit a PR.