最佳答案
如何获取/提取定义 shapely
多边形的点?
谢谢!
整形多边形的例子
from shapely.geometry import Polygon
# Create polygon from lists of points
x = [list of x vals]
y = [list of y vals]
polygon = Polygon(x,y)