import shapely >>> from shapely.geometry.point import Point >>> p = Point(0, 0) >>> circle = p.buffer(1.0) >>> list(circle.exterior.coords) [(1.0, 0.0), ...
確定! 回上一頁