我正在使用 Python、Shapely 和 Fiona。考虑到有两个 shapefile 可用,一个线 shapefile 和一个多边形 shapefile。
如何获得由交点(用 Q 标记表示)及其各自坐标组成的最终结果 shapefile?
我正在使用 Python、Shapely 和 Fiona。考虑到有两个 shapefile 可用,一个线 shapefile 和一个多边形 shapefile。
如何获得由交点(用 Q 标记表示)及其各自坐标组成的最终结果 shapefile?
您需要从多边形和线的外部获取交点。如果您改为使用与多边形的交集,则结果是一条线,因为多边形有一个区域。此外,交叉点可能是一条线,如果它们是平行的,那么您也可以期待 GeometryCollection
这是一个开始:
from shapely.wkt import loads
poly = loads('POLYGON ((140 270, 300 270, 350 200, 300 150, 140 150, 100 200, 140 270))')
line = loads('LINESTRING (370 290, 270 120)')
intersection = poly.exterior.intersection(line)
if intersection.is_empty:
print("shapes don't intersect")
elif intersection.geom_type.startswith('Multi') or intersection.geom_type == 'GeometryCollection':
for shp in intersection:
print(shp)
else:
print(intersection)