标签: python shapely
我使用python库shapely
我有两个Polygons,我尝试用相互触摸来提取线条。 (找到多边形相互接触的所有线条),如图所示:
Polygons
我试过了:
(l1).intersects(l2) (l1).intersects(l2).exterior (l1.exterior).intersects(l2.exterior)
但它没有帮助。我怎么能这样做?