mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-09 00:14:51 +00:00
Add Nad27UtmProjection
This commit is contained in:
parent
7cf4ed47a3
commit
57e614978b
3 changed files with 60 additions and 27 deletions
|
|
@ -15,6 +15,8 @@ namespace MapControl
|
|||
/// </summary>
|
||||
public class TransverseMercatorProjection : MapProjection
|
||||
{
|
||||
public const double DefaultScaleFactor = 0.9996;
|
||||
|
||||
public TransverseMercatorProjection()
|
||||
{
|
||||
Type = MapProjectionType.TransverseCylindrical;
|
||||
|
|
@ -22,7 +24,7 @@ namespace MapControl
|
|||
|
||||
public double EquatorialRadius { get; set; } = Wgs84EquatorialRadius;
|
||||
public double Flattening { get; set; } = Wgs84Flattening;
|
||||
public double ScaleFactor { get; set; } = 0.9996;
|
||||
public double ScaleFactor { get; set; } = DefaultScaleFactor;
|
||||
public double CentralMeridian { get; set; }
|
||||
public double FalseEasting { get; set; }
|
||||
public double FalseNorthing { get; set; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue