@brief Get distance between GPS points
@param from start point of calculation @see GlobalPoint "GlobalPoint"
@param to end point of calculation @see GlobalPoint "GlobalPoint"
@return distance in meters
@brief Get distance between points
@param from start point of calculation @see Point "Point"
@param to end point of calculation @see Point "Point"
@return distance in meters
@brief Calculate the division ratio of a segment by a given segment(if intersects)
@param segment1 first segment of calculation @see Segment "Segment"
@param segment2 second segment of calculation @see Segment "Segment"
@return division ratio
@brief Calculate the division ratio of a segment by a given point
Calculate projection point on a segment
@param segment segment of calculation @see Segment "Segment"
@param point point of calculation @see Point "Point"
@return division ratio
@brief Calculate projection point on a segment
@param segment segment of calculation @see Segment "Segment"
@param r division ratio
@return ratio point @see Point "Point"
@brief Checks that polygon contains point
@param polygon polygon object in which looking for contents @see Polygon "Polygon"
@param point checking point object @see Point "Point"
@return contains or not
@brief Calculate the intersection point of two segments
@param segment1 first segment of calculation @see Segment "Segment"
@param segment2 second segment of calculation @see Segment "Segment"
@return intersection point @see Point "Point"
@brief Checks the intersection of two segments
@param segment1 first segment of calculation @see Segment "Segment"
@param segment2 second segment of calculation @see Segment "Segment"
@return intersects or not
@brief Get distance from segment to point
@param segment start segment of calculation @see Segment "Segment"
@param point end point of calculation @see Point "Point"
@return distance in meters