mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
131 lines
5 KiB
C#
131 lines
5 KiB
C#
// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
|
|
// Copyright © 2024 Clemens Fischer
|
|
// Licensed under the Microsoft Public License (Ms-PL)
|
|
|
|
using GeoAPI.CoordinateSystems;
|
|
using GeoAPI.CoordinateSystems.Transformations;
|
|
using GeoAPI.Geometries;
|
|
using ProjNet.CoordinateSystems;
|
|
using ProjNet.CoordinateSystems.Transformations;
|
|
using System;
|
|
#if WPF
|
|
using System.Windows;
|
|
#endif
|
|
|
|
namespace MapControl.Projections
|
|
{
|
|
/// <summary>
|
|
/// MapProjection based on ProjNET4GeoApi.
|
|
/// </summary>
|
|
public class GeoApiProjection : MapProjection
|
|
{
|
|
private IProjectedCoordinateSystem coordinateSystem;
|
|
|
|
protected GeoApiProjection()
|
|
{
|
|
}
|
|
|
|
public GeoApiProjection(string coordinateSystemWkt)
|
|
{
|
|
CoordinateSystemWkt = coordinateSystemWkt;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets an OGC Well-known text representation of a coordinate system,
|
|
/// i.e. a PROJCS[...] or GEOGCS[...] string as used by https://epsg.io or http://spatialreference.org.
|
|
/// Setting this property updates the CoordinateSystem property with an ICoordinateSystem created from the WKT string.
|
|
/// </summary>
|
|
public string CoordinateSystemWkt
|
|
{
|
|
get => CoordinateSystem?.WKT;
|
|
protected set => CoordinateSystem = new CoordinateSystemFactory().CreateFromWkt(value) as IProjectedCoordinateSystem;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the ICoordinateSystem of the MapProjection.
|
|
/// </summary>
|
|
public IProjectedCoordinateSystem CoordinateSystem
|
|
{
|
|
get => coordinateSystem;
|
|
protected set
|
|
{
|
|
coordinateSystem = value ?? throw new ArgumentNullException(nameof(value));
|
|
|
|
var transformFactory = new CoordinateTransformationFactory();
|
|
|
|
LocationToMapTransform = transformFactory
|
|
.CreateFromCoordinateSystems(GeographicCoordinateSystem.WGS84, coordinateSystem)
|
|
.MathTransform;
|
|
|
|
MapToLocationTransform = transformFactory
|
|
.CreateFromCoordinateSystems(coordinateSystem, GeographicCoordinateSystem.WGS84)
|
|
.MathTransform;
|
|
|
|
CrsId = !string.IsNullOrEmpty(coordinateSystem.Authority) && coordinateSystem.AuthorityCode > 0
|
|
? $"{coordinateSystem.Authority}:{coordinateSystem.AuthorityCode}"
|
|
: string.Empty;
|
|
|
|
if (CrsId == "EPSG:3857")
|
|
{
|
|
Type = MapProjectionType.WebMercator;
|
|
}
|
|
else
|
|
{
|
|
var projection = coordinateSystem.Projection ??
|
|
throw new ArgumentException("CoordinateSystem.Projection must not be null.", nameof(value));
|
|
|
|
var centralMeridian = projection.GetParameter("central_meridian") ?? projection.GetParameter("longitude_of_origin");
|
|
var centralParallel = projection.GetParameter("central_parallel") ?? projection.GetParameter("latitude_of_origin");
|
|
var falseEasting = projection.GetParameter("false_easting");
|
|
var falseNorthing = projection.GetParameter("false_northing");
|
|
|
|
if ((centralMeridian == null || centralMeridian.Value == 0d) &&
|
|
(centralParallel == null || centralParallel.Value == 0d) &&
|
|
(falseEasting == null || falseEasting.Value == 0d) &&
|
|
(falseNorthing == null || falseNorthing.Value == 0d))
|
|
{
|
|
Type = MapProjectionType.NormalCylindrical;
|
|
}
|
|
else if (projection.Name.StartsWith("UTM") || projection.Name.StartsWith("Transverse"))
|
|
{
|
|
Type = MapProjectionType.TransverseCylindrical;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public IMathTransform LocationToMapTransform { get; private set; }
|
|
|
|
public IMathTransform MapToLocationTransform { get; private set; }
|
|
|
|
public override Point? LocationToMap(Location location)
|
|
{
|
|
if (LocationToMapTransform == null)
|
|
{
|
|
throw new InvalidOperationException("The CoordinateSystem property is not set.");
|
|
}
|
|
|
|
var coordinate = LocationToMapTransform.Transform(new Coordinate(location.Longitude, location.Latitude));
|
|
|
|
if (coordinate == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return new Point(coordinate.X, coordinate.Y);
|
|
}
|
|
|
|
public override Location MapToLocation(Point point)
|
|
{
|
|
if (MapToLocationTransform == null)
|
|
{
|
|
throw new InvalidOperationException("The CoordinateSystem property is not set.");
|
|
}
|
|
|
|
var coordinate = MapToLocationTransform.Transform(new Coordinate(point.X, point.Y));
|
|
|
|
return new Location(coordinate.Y, coordinate.X);
|
|
}
|
|
}
|
|
}
|