How to use the pdal.__init__.Info function in pdal

To help you get started, we’ve selected a few pdal examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github PDAL / python / pdal / __init__.py View on Github external
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()