34 lines
938 B
Python
34 lines
938 B
Python
from .lib import GEOSException # NOQA
|
|
from .lib import Geometry # NOQA
|
|
from .lib import geos_version, geos_version_string # NOQA
|
|
from .lib import geos_capi_version, geos_capi_version_string # NOQA
|
|
from .errors import setup_signal_checks # NOQA
|
|
from ._geometry import * # NOQA
|
|
from .creation import * # NOQA
|
|
from .constructive import * # NOQA
|
|
from .predicates import * # NOQA
|
|
from .measurement import * # NOQA
|
|
from .set_operations import * # NOQA
|
|
from .linear import * # NOQA
|
|
from .coordinates import * # NOQA
|
|
from .strtree import * # NOQA
|
|
from .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 . import _version
|
|
|
|
__version__ = _version.get_versions()["version"]
|
|
|
|
setup_signal_checks()
|