I have a LineString defined by two points, so essentially a straight line segment, and I wanted to project a point on to it. I am aware of .project
and .interpolate
. However when the point is "outside" the segment, I don't want the closest point on the segment, but I want to extend the segment and draw a line going through the point and is orthogonal to the (extended) line segment. I want the coordinate of the projection.
For example if the point is "within" the segment
from shapely.geometry import Point
from shapely.geometry import LineString
point = Point(0.2, 0.5)
dist = LineString([(0, 1), (1, 1)]).project(point)
list(LineString([(0, 1), (1, 1)]).interpolate(dist).coords)
Anyone knows what to do when the point is outside of the segment?