
The Shapely User Manual — Shapely 2.1.2 documentation
The shapely.wkt and shapely.wkb modules provide dumps () and loads () functions that work almost exactly as their pickle and simplejson module counterparts. To serialize a geometric object to a …
Shapely — Shapely 2.1.2 documentation
Shapely # Manipulation and analysis of geometric objects in the Cartesian plane. Shapely is a BSD-licensed Python package for manipulation and analysis of planar geometric objects. It is using the …
shapely.Polygon — Shapely 2.1.2 documentation
shapely.Polygon # class Polygon(shell=None, holes=None) # A geometry type representing an area that is enclosed by a linear ring. A polygon is a two-dimensional feature and has a non-zero area. It may …
Geometry — Shapely 2.1.1 documentation
Geometry # Shapely geometry classes, such as shapely.Point, are the central data types in Shapely. Each geometry class extends the shapely.Geometry base class, which is a container of the …
shapely.MultiPolygon — Shapely 2.1.2 documentation
shapely.MultiPolygon # class MultiPolygon(polygons=None) # A collection of one or more Polygons. If component polygons overlap the collection is invalid and some operations on it may fail. Parameters: …
shapely.buffer — Shapely 2.1.2 documentation
Deprecated since version 2.1.0: A deprecation warning is shown if quad_segs, cap_style, join_style, mitre_limit or single_sided are specified as positional arguments. In a future release, these will need …
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 …
shapely.simplify — Shapely 2.1.2 documentation
Deprecated since version 2.1.0: A deprecation warning is shown if preserve_topology is specified as a positional argument. This will need to be specified as a keyword argument in a future release.
shapely.difference — Shapely 2.1.2 documentation
shapely.difference # difference(a, b, grid_size=None, **kwargs) # Return the part of geometry A that does not intersect with geometry B. If grid_size is nonzero, input coordinates will be snapped to a …
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 …