Version 4.12.2 Fixed MapProjections.

This commit is contained in:
ClemensF 2019-06-10 11:28:15 +02:00
parent 8491a4fc7c
commit a7d3edf154
3 changed files with 3 additions and 3 deletions

View file

@ -27,7 +27,7 @@ namespace MapControl.Projections
public PolarStereographicProjection(string crsId, bool north, double scaleFactor = 1d, double falseEasting = 0d, double falseNorthing = 0d)
{
CrsId = crsId;
TrueScale = scaleFactor * MetersPerDegree;
TrueScale = scaleFactor * Wgs84MetersPerDegree;
this.north = north;
this.scaleFactor = scaleFactor;
this.falseEasting = falseEasting;