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

ReprojectPAStatePlaneToWGS84() public static method

Convert X / Y coordinates in PA State Plane South projection (feet) to lat/long decimal degree coordinates (WGS84 datum).
public static ReprojectPAStatePlaneToWGS84 ( double x, double y ) : Point
x double x value in feet for PA State Plane South projection
y double y value in feet for PA State Plane South projection
return Point
        public static Point ReprojectPAStatePlaneToWGS84(double x, double y)
        {
            return Reproject(PAStatePlane, WGS84, x, y);
        }