geopandas.GeoSeries.unary_union¶
- property GeoSeries.unary_union¶
Returns a geometry containing the union of all geometries in the
GeoSeries
.Examples
>>> from shapely.geometry import box >>> s = geopandas.GeoSeries([box(0,0,1,1), box(0,0,2,2)]) >>> s 0 POLYGON ((1.00000 0.00000, 1.00000 1.00000, 0.... 1 POLYGON ((2.00000 0.00000, 2.00000 2.00000, 0.... dtype: geometry
>>> union = s.unary_union >>> print(union) POLYGON ((0 1, 0 2, 2 2, 2 0, 1 0, 0 0, 0 1))