Removed incorrect TransverseMercatorProjection

This commit is contained in:
ClemensFischer 2024-09-09 17:29:45 +02:00
parent 47ff9096d1
commit 954451fb34
16 changed files with 70 additions and 399 deletions

View file

@ -126,8 +126,6 @@ namespace MapControl
var r1 = (Math.Atan2(dy1, dx1) * 180d / Math.PI + 180d) % 360d - 180d;
var r2 = (Math.Atan2(-dx2, dy2) * 180d / Math.PI + 180d) % 360d - 180d;
System.Diagnostics.Debug.WriteLine($"{r1}, {r2}");
rotatedRect = new Tuple<Rect, double>(new Rect(x, y, width, height), latLonBox.Rotation + (r1 + r2) / 2d);
}