I would like to find the points where a line intersects with a polygon. I obtain this polygon using a concave outline calculation from this thread.
import alphashape
from shapely.geometry import LineString
import matplotlib.pyplot as plt
from descartes import PolygonPatch
points = [(17, 158),(15, 135),(38, 183),(43, 19),(93, 88),(96, 140),(149, 163),(128, 248),(216, 265),(248, 210),(223, 167),(256, 151),(331, 214),(340, 187),(316, 53),(298, 35),(182, 0),(121, 42)]
points = np.array(points)
alpha = 0.99 * alphashape.optimizealpha(points)
hull = alphashape.alphashape(points, alpha)
hull_pts = hull.exterior.coords.xy
path = PolygonPatch(hull, fill=False, color='green')
print(path.contains_point([128,248]))
fig, ax = plt.subplots()
ax.scatter(hull_pts[0], hull_pts[1], color='red')
ax.scatter(points[:,0], points[:,1], color='red')
p = np.array([[350, 100],[0, 100]])
ax.plot(p[:, 0], p[:, 1], color='blue')
ax.add_patch(path)
so far I tried defining a line with:
l = LineString(p)
inters = l.intersection(hull)
but inters.xy
returns a NotImplemented error, so I am not sure how to obtain the coordinates of points where the line crosses the polygon.
The intersection returns a
MultilineString
, which is a fancy word for list ofLineStrings
. We can retrieve the coordinates then from each Linestring, e.g.:with
coords[:, i]
returning the x-y values for intersection pointi
.Sample output:
Weirdly,
shapely
considers a line point like300, 100
within the hull as an intersection point. Strictly speaking, one had to check that none of the identified points lies within the hull polygon.And alphashape (1.3.1 used here) should update their routine because
alphashape.alphashape(points, alpha)
generates the error messageShapelyDeprecationWarning: Iteration over multi-part geometries is deprecated and will be removed in Shapely 2.0. Use the
geomsproperty to access the constituent parts of a multi-part geometry.