
shapely.MultiPolygon — Shapely 2.1.2 documentation
Examples >>> from shapely import MultiLineString >>> line = MultiLineString([[(0, 0), (1, 1)], [(3, 3), (2, 2)]]) >>> line.normalize() <MULTILINESTRING ((2 2, 3 3), (0 0, 1 1))> property oriented_envelope # …
shapely.unary_union — Shapely 2.1.2 documentation
shapely.unary_union # unary_union(geometries, grid_size=None, axis=None, **kwargs) # Return the union of multiple geometries. This function ignores None values when other Geometry elements are …
shapely.within — Shapely 2.1.2 documentation - Read the Docs
shapely.within # within(a, b, **kwargs) # Return True if geometry A is completely inside geometry B. A is within B if no points of A lie in the exterior of B and at least one point of the interior of A lies in the …
shapely.intersection — Shapely 2.1.2 documentation
shapely.intersection # intersection(a, b, grid_size=None, **kwargs) # Return the geometry that is shared between input geometries. If grid_size is nonzero, input coordinates will be snapped to a precision …