Enroute Flight Navigation
A navigation app for VFR pilots
Positioning::Geoid Class Reference

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.
 

Detailed Description

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.

Definition at line 49 of file Geoid.h.

Member Function Documentation

◆ separation()

static auto Positioning::Geoid::separation ( const QGeoCoordinate & coord) -> Units::Distance
static

return geoidal separation – the difference between AMSL and ellipsoidal height.

Parameters
coordlocation for which the geoidal separation should be calculated.
Returns
Geoidal separation. In case that the method fails, NAN is returned

The documentation for this class was generated from the following file: