helios
helios copied to clipboard
pyhelios output of file names - multiple-leg support
With the newer versions of HELIOS++, it is possible to access the output file name from the pyhelios output:
output = sim.join()
file = output.filepath
print(file)
'D:/.../Survey Playback/arbaro_demo_tls/2022-02-07_09-02-03/points/leg001_points.las'
However, the survey has two legs, so the output should rather be a collection (vector) of the output file names.
Furthermore, there are two variables with the same information in the output object: filepath
and outpath
(see screenshot). What is the rationale behind this?