From 823327377973f43547a7c47e16ab3331174603ea Mon Sep 17 00:00:00 2001 From: ClemensFischer Date: Thu, 29 Jan 2026 16:31:14 +0100 Subject: [PATCH] Removed azimuthal and "auto" map projections --- MapControl/Shared/Wgs84UtmProjection.cs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/MapControl/Shared/Wgs84UtmProjection.cs b/MapControl/Shared/Wgs84UtmProjection.cs index 257c98be..470d859f 100644 --- a/MapControl/Shared/Wgs84UtmProjection.cs +++ b/MapControl/Shared/Wgs84UtmProjection.cs @@ -21,15 +21,10 @@ namespace MapControl public const int FirstZoneSouthEpsgCode = 32700 + FirstZone; public const int LastZoneSouthEpsgCode = 32700 + LastZone; - public int Zone { get; private set; } - public Hemisphere Hemisphere { get; private set; } + public int Zone { get; } + public Hemisphere Hemisphere { get; } public Wgs84UtmProjection(int zone, Hemisphere hemisphere) - { - SetZone(zone, hemisphere); - } - - public void SetZone(int zone, Hemisphere hemisphere) { if (zone < FirstZone || zone > LastZone) {