globalmapper.ProjectPoint ========================= .. currentmodule:: globalmapper .. py:function:: ProjectPoint (float aXIn, float aYIn, GM_Projection_t aProjIn, GM_Projection_t aProjOut) -> GM_Error_t32, float, float This function projects a point from one coordinate system to another. If None is passed for either projection parameter, the current view/export projection will be used. This function provides an easy way to convert from latitude/longitude coordinates (or coordinates in any other supported projection) to any other projection, including the current view projection. :param float aXIn: X coordinate of input point :param float aYIn: Y coordinate of input point :param GM_Projection_t aProjIn: projection to convert from (use None for current) :param GM_Projection_t aProjOut: projection to convert to (use None for current) :returns: Error Code :rtype: GM_Error_t32 :return: X coordinate of output point :rtype: float :return: Y coordinate of output point :rtype: float