mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-01-11 19:19:59 +01:00
Updated UTM projections
This commit is contained in:
parent
31df63459f
commit
28f2620e7d
|
|
@ -22,7 +22,7 @@ namespace MapControl
|
|||
}
|
||||
|
||||
Zone = zone;
|
||||
CrsId = $"EPSG:{25800 + Zone}";
|
||||
CrsId = $"EPSG:{25800 + zone}";
|
||||
|
||||
// GRS 1980
|
||||
EquatorialRadius = 6378137d;
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ namespace MapControl
|
|||
}
|
||||
|
||||
Zone = zone;
|
||||
CrsId = $"EPSG:{26700 + Zone}";
|
||||
CrsId = $"EPSG:{26700 + zone}";
|
||||
|
||||
// Clarke 1866
|
||||
EquatorialRadius = 6378206.4;
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ namespace MapControl
|
|||
}
|
||||
|
||||
Zone = zone;
|
||||
CrsId = $"EPSG:{26900 + Zone}";
|
||||
CrsId = $"EPSG:{26900 + zone}";
|
||||
|
||||
// GRS 1980
|
||||
EquatorialRadius = 6378137d;
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue