There are answers for how to get the geometry of the smallest enclosing circle with QGIS, ArcGIS, and PostGIS, but I haven't come across any way to create a smallest enclosing circle with GeoPandas.
The closest I've found is GeoSeries.envelope method (link). But this creates a smallest enclosing rectangle, NOT a circle. (A similar method is GeoSeries.convex_hull but still does not return a circle.)
I've also tried using the GeoSeries.buffer method with a distance great enough to cover the entire polygon I'm trying to enclose in a circle. However, this was done with trial and error, and there should be a way to automate this as easily as one could with GeoSeries.envelope.
How could one go about creating a smallest enclosing circle with GeoPandas?
