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

ReprojectWGS84ToPAStatePlane() public static method

Convert lat/long decimal degree coordinates (WGS84 datum) to X / Y coordinates in PA State Plane South projection (feet).
public static ReprojectWGS84ToPAStatePlane ( double lon, double lat ) : Point
lon double longitude in decimal degrees based on WGS84 horizontal datum
lat double latitude in decimal degrees based on WGS84 horizontal datum
return Point
        public static Point ReprojectWGS84ToPAStatePlane(double lon, double lat)
        {
            return Reproject(WGS84, PAStatePlane, lon, lat);
        }