initial commit
This commit is contained in:
28
billinglayer/python/shapely/geometry/__init__.py
Normal file
28
billinglayer/python/shapely/geometry/__init__.py
Normal file
@@ -0,0 +1,28 @@
|
||||
"""Geometry classes and factories
|
||||
"""
|
||||
|
||||
from .base import CAP_STYLE, JOIN_STYLE
|
||||
from .collection import GeometryCollection
|
||||
from .geo import box, mapping, shape
|
||||
from .linestring import LineString
|
||||
from .multilinestring import MultiLineString
|
||||
from .multipoint import MultiPoint
|
||||
from .multipolygon import MultiPolygon
|
||||
from .point import Point
|
||||
from .polygon import LinearRing, Polygon
|
||||
|
||||
__all__ = [
|
||||
"box",
|
||||
"shape",
|
||||
"mapping",
|
||||
"Point",
|
||||
"LineString",
|
||||
"Polygon",
|
||||
"MultiPoint",
|
||||
"MultiLineString",
|
||||
"MultiPolygon",
|
||||
"GeometryCollection",
|
||||
"LinearRing",
|
||||
"CAP_STYLE",
|
||||
"JOIN_STYLE",
|
||||
]
|
||||
Reference in New Issue
Block a user