82d39e66fe
* collections namespace change * add all C# GIS classes, deprecate the rest * deprecate GisPolygonGeometry properly * typo * add constructors * add multipatch geometry and units * reverse new classes * typos * formatting * formatting * optional collection name * init fix * pass applicationId if needed * remove init - causing all classes inheriting also implement it * remove init
25 lines
528 B
Python
25 lines
528 B
Python
"""Builtin Speckle object kit."""
|
|
|
|
from specklepy.objects.GIS.CRS import CRS
|
|
from specklepy.objects.GIS.geometry import (
|
|
GisLineElement,
|
|
GisPointElement,
|
|
GisPolygonElement,
|
|
GisPolygonGeometry,
|
|
GisRasterElement,
|
|
PolygonGeometry,
|
|
)
|
|
from specklepy.objects.GIS.layers import RasterLayer, VectorLayer
|
|
|
|
__all__ = [
|
|
"VectorLayer",
|
|
"RasterLayer",
|
|
"GisPolygonGeometry",
|
|
"PolygonGeometry",
|
|
"GisPolygonElement",
|
|
"GisLineElement",
|
|
"GisPointElement",
|
|
"GisRasterElement",
|
|
"CRS",
|
|
]
|