I want to create a polygon from shapely points.
from shapely import geometry p1 = geometry.Point(0,0) p2 = geometry.Point(1,0) p3 = geometry.Point(1,1) p4 =
The Polygon constructor doesn't expect a list of Point objects but a list of point coordinates.
Polygon
Point
See https://shapely.readthedocs.io/en/latest/manual.html#polygons