mirror of
https://github.com/dotMorten/NmeaParser.git
synced 2026-04-05 06:25:36 +00:00
Fix typo
This commit is contained in:
parent
b52d2d2d2b
commit
abd5fe56c7
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue