From abd5fe56c75918fb9a5e14ad9a6ed559d7fae969 Mon Sep 17 00:00:00 2001 From: Morten Nielsen <1378165+dotMorten@users.noreply.github.com> Date: Mon, 27 Jul 2020 22:50:26 -0700 Subject: [PATCH] Fix typo --- docs/concepts/ArcGISRuntime.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/ArcGISRuntime.md b/docs/concepts/ArcGISRuntime.md index 74d6ef6..c8e8b76 100644 --- a/docs/concepts/ArcGISRuntime.md +++ b/docs/concepts/ArcGISRuntime.md @@ -150,7 +150,7 @@ namespace NmeaParser.ArcGIS { // Vertical id 115700 == ellipsoid reference system. Gga is geoid, but we subtract GeoidalSeparation to simplify // vertical transformations from the simpler/better known ellipsoidal model - position = new MapPoint(gga.Longitude, gga.Latitude, gga.Altitude - gga.GeoidalSeparation, SpatialReference.Create(4326, 115700)); + position = new MapPoint(gga.Longitude, gga.Latitude, gga.Altitude + gga.GeoidalSeparation, SpatialReference.Create(4326, 115700)); } } if (rmc != null && rmc.FixTime.TimeOfDay == timeOfFix)