Azavea.Open.Reprojection.Reprojector.ReprojectWebMercatorToWGS84 C# (CSharp) Метод

ReprojectWebMercatorToWGS84() публичный статический Метод

Convert X / Y coordinates in Web Mercator projection (meters) to lat/long decimal degree coordinates (WGS84 datum). Note that this is a manual re-projection and does not use PROJ.Net.
public static ReprojectWebMercatorToWGS84 ( double x, double y ) : Point
x double x value in meters for Spherical Mercator projection
y double y value in meters for Spherical Mercator projection
Результат Point
        public static Point ReprojectWebMercatorToWGS84(double x, double y)
        {
            return new Point(ConvertMercatorXToLongitude(x), ConvertMercatorYToLatitude(y));
        }