Update PolarStereographicProjection.cs

This commit is contained in:
Clemens 2022-03-06 23:28:25 +01:00
parent 123a9916eb
commit 6c1349db1d

View file

@ -16,8 +16,8 @@ namespace MapControl.Projections
/// </summary> /// </summary>
public class PolarStereographicProjection : MapProjection public class PolarStereographicProjection : MapProjection
{ {
public static double ConvergenceTolerance { get; set; } = 1e-6; private const double ConvergenceTolerance = 1e-6;
public static int MaxIterations { get; set; } = 10; private const int MaxIterations = 10;
public double ScaleFactor { get; } public double ScaleFactor { get; }
public double FalseEasting { get; } public double FalseEasting { get; }
@ -112,7 +112,7 @@ namespace MapControl.Projections
} }
/// <summary> /// <summary>
/// Elliptical North Polar Stereographic Projection - EPSG:32661. /// Universal Polar Stereographic North Projection - EPSG:32661.
/// </summary> /// </summary>
public class UpsNorthProjection : PolarStereographicProjection public class UpsNorthProjection : PolarStereographicProjection
{ {
@ -125,7 +125,7 @@ namespace MapControl.Projections
} }
/// <summary> /// <summary>
/// Elliptical South Polar Stereographic Projection - EPSG:32761. /// Universal Polar Stereographic South Projection - EPSG:32761.
/// </summary> /// </summary>
public class UpsSouthProjection : PolarStereographicProjection public class UpsSouthProjection : PolarStereographicProjection
{ {