So I am interested in knowing how far along a polyline a given point sits. Python's shapely package has a method to do such a thing, see the below code:
from shapely.geometry import LineStringip = LineString([(0, 0), (0, 1), (1, 1)]).interpolate(1.5)print LineString([(0, 0), (0, 1), (1...