Added GeoApiProjectionFactory

This commit is contained in:
Clemens 2022-01-19 23:40:05 +01:00
parent d7c45effc6
commit 5b9e5529f6
6 changed files with 106 additions and 4 deletions

View file

@ -114,14 +114,16 @@ namespace MapControl.Projections
public class UpsNorthProjection : PolarStereographicProjection
{
public UpsNorthProjection() : base("EPSG:32661", true, 0.994, 2e6, 2e6)
public UpsNorthProjection()
: base("EPSG:32661", true, 0.994, 2e6, 2e6)
{
}
}
public class UpsSouthProjection : PolarStereographicProjection
{
public UpsSouthProjection() : base("EPSG:32761", false, 0.994, 2e6, 2e6)
public UpsSouthProjection()
: base("EPSG:32761", false, 0.994, 2e6, 2e6)
{
}
}