globalmapper.ProjectPointFromECEF ================================= .. currentmodule:: globalmapper .. py:function:: ProjectPointFromECEF (float aX, float aY, float aZ, DATUM aDatum, GM_Projection_t aProjOut) -> GM_Error_t32, float, float, float Projects a point from ECEF (earth-centered earth-fixed) coordinates referenced to some datum (normally WGS84) to coordinates in some projection. :param float aX: ECEF X coordinate of input :param float aY: ECEF Y coordinate of input :param float aZ: ECEF Z coordinate of input :param DATUM aDatum: datum of ECEF coordinate (normally GM_DATUM_WGS_84) :param GM_Projection_t aProjTo: projection to convert to (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 :return: Z coordinate of output point (meters above ellipsoid) :rtype: float