From 6c1349db1d2acc0dd430cc36064c27d8d8ba5005 Mon Sep 17 00:00:00 2001 From: Clemens Date: Sun, 6 Mar 2022 23:28:25 +0100 Subject: [PATCH] Update PolarStereographicProjection.cs --- MapProjections/Shared/PolarStereographicProjection.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MapProjections/Shared/PolarStereographicProjection.cs b/MapProjections/Shared/PolarStereographicProjection.cs index a4dcdf75..dbb38867 100644 --- a/MapProjections/Shared/PolarStereographicProjection.cs +++ b/MapProjections/Shared/PolarStereographicProjection.cs @@ -16,8 +16,8 @@ namespace MapControl.Projections /// public class PolarStereographicProjection : MapProjection { - public static double ConvergenceTolerance { get; set; } = 1e-6; - public static int MaxIterations { get; set; } = 10; + private const double ConvergenceTolerance = 1e-6; + private const int MaxIterations = 10; public double ScaleFactor { get; } public double FalseEasting { get; } @@ -112,7 +112,7 @@ namespace MapControl.Projections } /// - /// Elliptical North Polar Stereographic Projection - EPSG:32661. + /// Universal Polar Stereographic North Projection - EPSG:32661. /// public class UpsNorthProjection : PolarStereographicProjection { @@ -125,7 +125,7 @@ namespace MapControl.Projections } /// - /// Elliptical South Polar Stereographic Projection - EPSG:32761. + /// Universal Polar Stereographic South Projection - EPSG:32761. /// public class UpsSouthProjection : PolarStereographicProjection {