Add map projections

Add TransverseMercatorProjection, PolarStereographicProjection and derived UTM/UPS projections to the base library.
This commit is contained in:
ClemensFischer 2022-12-13 18:22:18 +01:00
parent 568f55feb0
commit e45180b26a
18 changed files with 647 additions and 332 deletions

View file

@ -17,7 +17,8 @@ namespace MapControl
/// </summary>
public class EquirectangularProjection : MapProjection
{
public const string DefaultCrsId = "EPSG:4326";
public const int DefaultEpsgCode = 4326;
public static readonly string DefaultCrsId = $"EPSG:{DefaultEpsgCode}";
public EquirectangularProjection()
{