Updated azimuthal projections

This commit is contained in:
ClemensFischer 2026-01-21 14:15:26 +01:00
parent 1bf4cab071
commit 2e27fc740d
5 changed files with 33 additions and 14 deletions

View file

@ -31,7 +31,7 @@ namespace MapControl
var p = GetProjectedPoint(latitude, longitude);
var k = 2d / (1d + p.CosC); // p.157 (21-4), k0 == 1
return new Matrix(k, 0d, 0d, k, 0d, 0d);
return p.RelativeScale(k, k);
}
public override Point? LocationToMap(double latitude, double longitude)