mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-20 22:05:07 +00:00
Update PolarStereographicProjection.cs
This commit is contained in:
parent
123a9916eb
commit
6c1349db1d
1 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue