library packages

This commit is contained in:
2024-09-28 22:56:00 -07:00
parent 64d9b78b3a
commit 1973934e95
4893 changed files with 1184173 additions and 31 deletions

View 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()