XAML-Map-Control/MapProjections/Shared/Wgs84UtmProjection.cs

93 lines
2.6 KiB
C#
Raw Normal View History

// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
2024-02-03 21:01:53 +01:00
// Copyright © 2024 Clemens Fischer
// Licensed under the Microsoft Public License (Ms-PL)
2018-12-20 21:55:12 +01:00
using ProjNet.CoordinateSystems;
2022-01-21 00:17:01 +01:00
using System;
namespace MapControl.Projections
{
2022-12-14 18:02:19 +01:00
/// <summary>
/// WGS84 UTM Projection with zone number and north/south flag.
/// </summary>
2022-01-23 14:02:04 +01:00
public class Wgs84UtmProjection : GeoApiProjection
{
2022-12-14 18:02:19 +01:00
public const int FirstZone = 1;
public const int LastZone = 60;
public const int FirstZoneNorthEpsgCode = 32600 + FirstZone;
public const int LastZoneNorthEpsgCode = 32600 + LastZone;
public const int FirstZoneSouthEpsgCode = 32700 + FirstZone;
public const int LastZoneSouthEpsgCode = 32700 + LastZone;
public int Zone { get; private set; }
public bool IsNorth { get; private set; }
protected Wgs84UtmProjection()
{
}
2022-01-23 14:02:04 +01:00
public Wgs84UtmProjection(int zone, bool north)
{
2022-12-14 18:02:19 +01:00
SetZone(zone, north);
}
protected void SetZone(int zone, bool north)
{
if (zone < FirstZone || zone > LastZone)
2022-01-21 00:17:01 +01:00
{
2022-12-14 18:02:19 +01:00
throw new ArgumentException($"Invalid WGS84 UTM zone {zone}.", nameof(zone));
2022-01-21 00:17:01 +01:00
}
2022-12-14 18:02:19 +01:00
Zone = zone;
IsNorth = north;
CoordinateSystem = ProjectedCoordinateSystem.WGS84_UTM(Zone, IsNorth);
}
}
/// <summary>
/// WGS84 UTM Projection with automatic zone selection from projection center.
/// </summary>
public class Wgs84AutoUtmProjection : Wgs84UtmProjection
{
public const string DefaultCrsId = "AUTO2:42001";
public Wgs84AutoUtmProjection(bool useZoneCrsId = false)
{
UseZoneCrsId = useZoneCrsId;
UpdateZone();
}
public bool UseZoneCrsId { get; }
public override Location Center
{
get => base.Center;
set
{
if (!Equals(base.Center, value))
{
base.Center = value;
UpdateZone();
}
}
}
private void UpdateZone()
{
var lon = Location.NormalizeLongitude(Center.Longitude);
var zone = (int)Math.Floor(lon / 6d) + 31;
var north = Center.Latitude >= 0d;
if (Zone != zone || IsNorth != north || string.IsNullOrEmpty(CrsId))
{
SetZone(zone, north);
if (!UseZoneCrsId)
{
CrsId = DefaultCrsId;
}
}
}
}
}