Loading [MathJax]/jax/output/HTML-CSS/config.js
Version
nightly build
2.6.0 (latest)
2.5.0
2.4.0
2.3.2
2.3.1
2.3.0
Technische Universität Wien
Orientation and Processing of Airborne Laser Scanning data
Department of Geodesy and Geoinformation - Research Groups Photogrammetry and Remote Sensing
Main Page
Module List
Reference documentation
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
i
j
m
o
p
r
s
t
w
Variables
Typedefs
c
i
o
Enumerations
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
z
Enumerator
a
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
u
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
c
d
e
f
g
i
l
m
n
p
r
s
t
u
w
Typedefs
a
c
f
i
k
p
q
r
t
v
Enumerations
Enumerator
a
b
c
e
m
n
p
q
r
s
v
Examples
Video Tutorials
opalsQualityDemo.py
1
# example on how to run an opals workflow package script from inside python
2
3
# import opalsQuality package script
4
from
opals.workflows
import
opalsQuality
5
6
def
test_run():
7
# instantiate package and set parameters
8
pkgQlt = opalsQuality.opalsQuality(infile =
'strip??.laz'
)
9
10
# it is also possible to set parameters explicitly
11
# pkgQlt = opalsQuality.opalsQuality()
12
# pkgQlt.infile = 'strip??.laz'
13
14
# run package script
15
pkgQlt.run()
16
17
18
if
__name__ ==
"__main__"
:
19
# since the workflow scripts may use the python multiprocessing library, we need to
20
# place the actual run command in such an if statement. see the python multiprocessing
21
# docu (https://docs.python.org/3/library/multiprocessing.html) for further details.
22
test_run()