library packages
This commit is contained in:
33
.venv/lib/python3.12/site-packages/shapely/__init__.py
Normal file
33
.venv/lib/python3.12/site-packages/shapely/__init__.py
Normal file
@@ -0,0 +1,33 @@
|
||||
from shapely.lib import GEOSException # NOQA
|
||||
from shapely.lib import Geometry # NOQA
|
||||
from shapely.lib import geos_version, geos_version_string # NOQA
|
||||
from shapely.lib import geos_capi_version, geos_capi_version_string # NOQA
|
||||
from shapely.errors import setup_signal_checks # NOQA
|
||||
from shapely._geometry import * # NOQA
|
||||
from shapely.creation import * # NOQA
|
||||
from shapely.constructive import * # NOQA
|
||||
from shapely.predicates import * # NOQA
|
||||
from shapely.measurement import * # NOQA
|
||||
from shapely.set_operations import * # NOQA
|
||||
from shapely.linear import * # NOQA
|
||||
from shapely.coordinates import * # NOQA
|
||||
from shapely.strtree import * # NOQA
|
||||
from shapely.io import * # NOQA
|
||||
|
||||
# Submodule always needs to be imported to ensure Geometry subclasses are registered
|
||||
from shapely.geometry import ( # NOQA
|
||||
Point,
|
||||
LineString,
|
||||
Polygon,
|
||||
MultiPoint,
|
||||
MultiLineString,
|
||||
MultiPolygon,
|
||||
GeometryCollection,
|
||||
LinearRing,
|
||||
)
|
||||
|
||||
from shapely import _version
|
||||
|
||||
__version__ = _version.get_versions()["version"]
|
||||
|
||||
setup_signal_checks()
|
||||
Reference in New Issue
Block a user