Azavea.Open.Reprojection.Reprojector.ReprojectWebMercatorToWGS84 C# (CSharp) Method

ReprojectWebMercatorToWGS84() public static method

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
return Point
        public static Point ReprojectWebMercatorToWGS84(double x, double y)
        {
            return new Point(ConvertMercatorXToLongitude(x), ConvertMercatorYToLatitude(y));
        }