Updated PolarStereographicProjection

This commit is contained in:
ClemensFischer 2026-01-18 21:03:25 +01:00
parent 31b38d5049
commit 19cba8978b
3 changed files with 13 additions and 19 deletions

View file

@ -25,7 +25,7 @@ namespace MapControl.Projections
public override Point RelativeScale(double latitude, double longitude)
{
var k = PolarStereographicProjection.RelativeScale(Hemisphere.North, Wgs84EquatorialRadius, Wgs84Flattening, 0.994, latitude);
var k = PolarStereographicProjection.RelativeScale(Hemisphere.North, Wgs84Flattening, 0.994, latitude);
return new Point(k, k);
}
@ -50,7 +50,7 @@ namespace MapControl.Projections
public override Point RelativeScale(double latitude, double longitude)
{
var k = PolarStereographicProjection.RelativeScale(Hemisphere.South, Wgs84EquatorialRadius, Wgs84Flattening, 0.994, latitude);
var k = PolarStereographicProjection.RelativeScale(Hemisphere.South, Wgs84Flattening, 0.994, latitude);
return new Point(k, k);
}