Use mean radius in distance calculations

This commit is contained in:
ClemensFischer 2026-01-09 08:13:07 +01:00
parent c187f323a8
commit 23a8e49efb
8 changed files with 20 additions and 14 deletions

View file

@ -13,6 +13,8 @@ namespace MapControl
/// </summary>
public class WorldMercatorProjection : MapProjection
{
public static readonly double Wgs84Eccentricity = Math.Sqrt((2d - Wgs84Flattening) * Wgs84Flattening);
public const string DefaultCrsId = "EPSG:3395";
public WorldMercatorProjection()