2023-01-03 15:12:53 +01:00
|
|
|
|
// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
|
2024-02-03 21:01:53 +01:00
|
|
|
|
// Copyright © 2024 Clemens Fischer
|
2022-12-13 18:22:18 +01:00
|
|
|
|
// Licensed under the Microsoft Public License (Ms-PL)
|
|
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace MapControl
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// WGS84 UTM Projection with zone number and north/south flag.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class Wgs84UtmProjection : TransverseMercatorProjection
|
|
|
|
|
|
{
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
2022-12-13 23:25:05 +01:00
|
|
|
|
public int Zone { get; private set; }
|
|
|
|
|
|
public bool IsNorth { get; private set; }
|
|
|
|
|
|
|
2022-12-13 18:22:18 +01:00
|
|
|
|
protected Wgs84UtmProjection()
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Wgs84UtmProjection(int zone, bool north)
|
|
|
|
|
|
{
|
|
|
|
|
|
SetZone(zone, north);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-12-13 23:25:05 +01:00
|
|
|
|
protected void SetZone(int zone, bool north, string crsId = null)
|
2022-12-13 18:22:18 +01:00
|
|
|
|
{
|
|
|
|
|
|
if (zone < FirstZone || zone > LastZone)
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new ArgumentException($"Invalid WGS84 UTM zone {zone}.", nameof(zone));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var epsgCode = zone - FirstZone + (north ? FirstZoneNorthEpsgCode : FirstZoneSouthEpsgCode);
|
|
|
|
|
|
|
|
|
|
|
|
Zone = zone;
|
|
|
|
|
|
IsNorth = north;
|
|
|
|
|
|
CrsId = crsId ?? $"EPSG:{epsgCode}";
|
2022-12-13 23:25:05 +01:00
|
|
|
|
EquatorialRadius = Wgs84EquatorialRadius;
|
2022-12-14 18:02:19 +01:00
|
|
|
|
Flattening = Wgs84Flattening;
|
2022-12-13 23:25:05 +01:00
|
|
|
|
ScaleFactor = DefaultScaleFactor;
|
2022-12-13 18:22:18 +01:00
|
|
|
|
CentralMeridian = Zone * 6d - 183d;
|
|
|
|
|
|
FalseEasting = 5e5;
|
|
|
|
|
|
FalseNorthing = IsNorth ? 0d : 1e7;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <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, UseZoneCrsId ? null : DefaultCrsId);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|