mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-05 14:37:01 +00:00
Updated PolarStereographicProjection
This commit is contained in:
parent
31b38d5049
commit
19cba8978b
3 changed files with 13 additions and 19 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue