Enroute Flight Navigation
A navigation app for VFR pilots
|
Provide geoidal separation according to https://en.wikipedia.org/wiki/Geoid. More...
#include <Geoid.h>
Static Public Member Functions | |
static auto | separation (const QGeoCoordinate &coord) -> Units::Distance |
return geoidal separation – the difference between AMSL and ellipsoidal height. | |
Provide geoidal separation according to https://en.wikipedia.org/wiki/Geoid.
In maps and common use (like VFR) the height over the mean sea level (such as orthometric height) is used to indicate the height of elevations while the ellipsoidal height results from the GPS system and similar GNSS.
The deviation between the ellipsoidal height and the orthometric height is provided here.
The implementation uses the data from https://earth-info.nga.mil/GandG/wgs84/gravitymod/egm96/binary/binarygeoid.html and does a bilinear interpolation between the four neighboring data points of the requested location.
The implementation was very carefully tested and compared with both a bilinear and a bicubic spline interpolation in python. The comparison of the method here with the python bilinear interpolation verified that both implementations yield the same numbers (within numerical precision). The comparison of the bilinear implementation here with the python's bicubic interpolation showed a worldwide max deviation of about 1 m.
|
static |
return geoidal separation – the difference between AMSL and ellipsoidal height.
coord | location for which the geoidal separation should be calculated. |