Removed reference to Lambert Coordinate Conversion
This commit is contained in:
@@ -41,16 +41,6 @@ namespace GpsClient2 {
|
||||
#region Events Triggers
|
||||
|
||||
protected virtual void OnGpsDataReceived(GpsDataEventArgs e) {
|
||||
if (GpsInfo.CoordinateSystem == GpsCoordinateSystem.Lambert72) {
|
||||
var x = 0.0d;
|
||||
var y = 0.0d;
|
||||
var h = 0.0d;
|
||||
CoordinateConverterUtilities.GeoETRS89ToLambert72(e.Latitude, e.Longitude, 0, ref x, ref y, ref h);
|
||||
e.CoordinateSystem = GpsCoordinateSystem.Lambert72;
|
||||
e.Latitude = x;
|
||||
e.Longitude = y;
|
||||
}
|
||||
|
||||
GpsCallbackEvent?.Invoke(this, e);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user