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

Reproject() public static method

Given a couple coordinate systems, projects a point from one to another.
public static Reproject ( ICoordinateSystem from, ICoordinateSystem to, IPoint point ) : IPoint
from ICoordinateSystem The coordinate system which the point is in originally
to ICoordinateSystem The coordinate system into which the point will be reprojected
point IPoint The point to be reprojected
return IPoint
        public static IPoint Reproject(ICoordinateSystem from, ICoordinateSystem to, IPoint point)
        {
            return Reproject(from, to, point.X, point.Y);
        }

Same methods

Reprojector::Reproject ( ICoordinateSystem from, ICoordinateSystem to, double xLon, double yLat ) : Point