Does Plotly allow to plot geometrical shapes (Polygons) made using Shapely?

Sure you can! Check this link: Shapes | Python | Plotly
Basically, use go.Figure(go.Scatter(x=x, y=y, fill=β€œtoself”)) where x, y denote the polygon vertices which you can get from a Shapely polygon via x, y = Shapely_poly.exterior.coords.xy

1 Like