Implements the convex_hull property for GeoSeries as part of #2230.
Implementation Details
- Uses
ST_ConvexHull Sedona function
- Modeled after
centroid implementation
- Returns smallest convex polygon containing all points in each geometry
Testing
- Added test with docstring examples in
test_geoseries.py
- Added comparison test against geopandas in
test_match_geopandas_series.py
Related to #2230