@@ -4565,7 +4565,7 @@ def create_buffer(
4565
4565
See Also
4566
4566
________
4567
4567
4568
- create_unified_buffer : Create a unified buffer around Shapely LineStrings or Points
4568
+ create_unified_buffer : Create a unified buffer around Shapely LineStrings or Shapely Points
4569
4569
4570
4570
"""
4571
4571
# Checking that the geometry object is a Shapely LineString or Point
@@ -4590,25 +4590,27 @@ def create_unified_buffer(
4590
4590
],
4591
4591
distance : Union [np .ndarray , List [Union [float , int ]], Union [float , int ]],
4592
4592
) -> shapely .geometry .multipolygon .MultiPolygon :
4593
- """Creating a unified buffer around Shapely LineStrings or Points
4593
+ """Create a unified buffer around Shapely LineStrings or Shapely Points.
4594
4594
4595
4595
Parameters
4596
4596
__________
4597
4597
4598
4598
geom_object : Union[gpd.geodataframe.GeoDataFrame, List[shapely.geometry.base.BaseGeometry]]
4599
- GeoDataFrame or List of Shapely objects
4599
+ GeoDataFrame or List of Shapely objects.
4600
4600
4601
4601
distance : Union[np.ndarray, List[Union[float, int]], Union[float, int]]
4602
- Distance of the buffer around the geometry object, e.g. ``distance=10``
4602
+ Distance of the buffer around the geometry object, e.g. ``distance=10``.
4603
4603
4604
4604
Returns
4605
4605
_______
4606
4606
4607
4607
polygon : shapely.geometry.multipolygon.MultiPolygon
4608
- Polygon representing the buffered area around a geometry object
4608
+ Polygon representing the buffered area around a geometry object.
4609
4609
4610
4610
.. versionadded:: 1.0.x
4611
4611
4612
+ .. versionchanged:: 1.2
4613
+
4612
4614
Example
4613
4615
_______
4614
4616
@@ -4636,10 +4638,9 @@ def create_unified_buffer(
4636
4638
See Also
4637
4639
________
4638
4640
4639
- create_buffer : Creating a buffer around a Shapely LineString or Point
4641
+ create_buffer : Create a buffer around a Shapely LineString or a Shapely Point
4640
4642
4641
4643
"""
4642
-
4643
4644
# Checking that the geometry object is a Shapely LineString or Point
4644
4645
if not isinstance (
4645
4646
geom_object ,
0 commit comments