Skip to content

Version 1.0.10 - Add getGeoidalSeparation()

Latest

Choose a tag to compare

@PaulZC PaulZC released this 01 Dec 15:36
7ab0b5f

This release:

  • Adds the method getGeoidalSeparation()
    • In this library, getAltitude returns the Height above mean sea level (meters) from the BESTNAVB message
    • Other GNSS libraries return the Height above Ellipsoid
    • To calculate the Height above Ellipsoid manually:
    • double heightAboveEllipsoid = myGNSS.getAltitude() + myGNSS.getGeoidalSeparation();