mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-05 06:26:41 +00:00
EPSG Codes & CRS IDs
This commit is contained in:
parent
ce6f190bf1
commit
03c18d5126
9 changed files with 66 additions and 72 deletions
|
|
@ -117,9 +117,9 @@ namespace MapControl
|
|||
/// </summary>
|
||||
public class UpsNorthProjection : PolarStereographicProjection
|
||||
{
|
||||
public const int EpsgCode = 32661;
|
||||
public const string DefaultCrsId = "EPSG:32661";
|
||||
|
||||
public UpsNorthProjection(string crsId = "EPSG:32661")
|
||||
public UpsNorthProjection(string crsId = DefaultCrsId)
|
||||
{
|
||||
CrsId = crsId;
|
||||
IsNorth = true;
|
||||
|
|
@ -131,9 +131,9 @@ namespace MapControl
|
|||
/// </summary>
|
||||
public class UpsSouthProjection : PolarStereographicProjection
|
||||
{
|
||||
public const int EpsgCode = 32761;
|
||||
public const string DefaultCrsId = "EPSG:32761";
|
||||
|
||||
public UpsSouthProjection(string crsId = "EPSG:32761")
|
||||
public UpsSouthProjection(string crsId = DefaultCrsId)
|
||||
{
|
||||
CrsId = crsId;
|
||||
IsNorth = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue