mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-05 14:37:01 +00:00
Improved MapProjections
This commit is contained in:
parent
82470435c7
commit
716cf950f3
6 changed files with 66 additions and 52 deletions
|
|
@ -17,23 +17,24 @@ namespace MapControl.Projections
|
|||
{
|
||||
public WorldMercatorProjection()
|
||||
{
|
||||
IsNormalCylindrical = true;
|
||||
WKT = "PROJCS[\"WGS 84 / World Mercator\","
|
||||
+ "GEOGCS[\"WGS 84\","
|
||||
+ "DATUM[\"WGS_1984\", SPHEROID[\"WGS 84\", 6378137, 298.257223563, AUTHORITY[\"EPSG\", \"7030\"]], AUTHORITY[\"EPSG\", \"6326\"]],"
|
||||
+ "PRIMEM[\"Greenwich\", 0, AUTHORITY[\"EPSG\", \"8901\"]],"
|
||||
+ "UNIT[\"degree\", 0.0174532925199433, AUTHORITY[\"EPSG\", \"9122\"]],"
|
||||
+ "AUTHORITY[\"EPSG\", \"4326\"]],"
|
||||
+ "PROJECTION[\"Mercator_1SP\"],"
|
||||
+ "PARAMETER[\"latitude_of_origin\", 0],"
|
||||
+ "PARAMETER[\"central_meridian\", 0],"
|
||||
+ "PARAMETER[\"scale_factor\", 1],"
|
||||
+ "PARAMETER[\"false_easting\", 0],"
|
||||
+ "PARAMETER[\"false_northing\", 0],"
|
||||
+ "UNIT[\"metre\", 1, AUTHORITY[\"EPSG\", \"9001\"]],"
|
||||
+ "AXIS[\"Easting\", EAST],"
|
||||
+ "AXIS[\"Northing\", NORTH],"
|
||||
+ "AUTHORITY[\"EPSG\", \"3395\"]]";
|
||||
WKT = "PROJCS[\"WGS 84 / World Mercator\"," +
|
||||
"GEOGCS[\"WGS 84\"," +
|
||||
"DATUM[\"WGS_1984\"," +
|
||||
"SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]]," +
|
||||
"AUTHORITY[\"EPSG\",\"6326\"]]," +
|
||||
"PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]]," +
|
||||
"UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]]," +
|
||||
"AUTHORITY[\"EPSG\",\"4326\"]]," +
|
||||
"PROJECTION[\"Mercator_1SP\"]," +
|
||||
"PARAMETER[\"latitude_of_origin\",0]," +
|
||||
"PARAMETER[\"central_meridian\",0]," +
|
||||
"PARAMETER[\"scale_factor\",1]," +
|
||||
"PARAMETER[\"false_easting\",0]," +
|
||||
"PARAMETER[\"false_northing\",0]," +
|
||||
"UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]]," +
|
||||
"AXIS[\"Easting\",EAST]," +
|
||||
"AXIS[\"Northing\",NORTH]," +
|
||||
"AUTHORITY[\"EPSG\",\"3395\"]]";
|
||||
}
|
||||
|
||||
public override Vector GetMapScale(Location location)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue