1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
__version__='2.1.8'
from .pipeline import Pipeline
from .array import Array
from .dimension import dimensions
from pdal.libpdalpython import getVersionString, getVersionMajor, getVersionMinor, getVersionPatch, getSha1, getDebugInformation, getPluginInstallPath
class Info(object):
version = getVersionString()
major = getVersionMajor()
minor = getVersionMinor()
patch = getVersionPatch()
debug = getDebugInformation()
sha1 = getSha1()
plugin = getPluginInstallPath()
info = Info()
|