refactor: excel parse

This commit is contained in:
Blizzard
2026-04-16 10:01:11 +08:00
parent 680ecc320f
commit f62f95ec02
7941 changed files with 2899112 additions and 0 deletions
@@ -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()