Updated UTM projections

This commit is contained in:
ClemensFischer 2026-01-10 21:36:22 +01:00
parent 31df63459f
commit 28f2620e7d
4 changed files with 4 additions and 4 deletions

View file

@ -22,7 +22,7 @@ namespace MapControl
}
Zone = zone;
CrsId = $"EPSG:{25800 + Zone}";
CrsId = $"EPSG:{25800 + zone}";
// GRS 1980
EquatorialRadius = 6378137d;

View file

@ -22,7 +22,7 @@ namespace MapControl
}
Zone = zone;
CrsId = $"EPSG:{26700 + Zone}";
CrsId = $"EPSG:{26700 + zone}";
// Clarke 1866
EquatorialRadius = 6378206.4;

View file

@ -22,7 +22,7 @@ namespace MapControl
}
Zone = zone;
CrsId = $"EPSG:{26900 + Zone}";
CrsId = $"EPSG:{26900 + zone}";
// GRS 1980
EquatorialRadius = 6378137d;

View file

@ -32,7 +32,7 @@ namespace MapControl.Projections
Zone = zone;
Hemisphere = hemisphere;
CoordinateSystem = ProjectedCoordinateSystem.WGS84_UTM(Zone, hemisphere == Hemisphere.North);
CoordinateSystem = ProjectedCoordinateSystem.WGS84_UTM(zone, hemisphere == Hemisphere.North);
}
}
}