Hi Colin,
the first option would be to go to your LAStoolsArcGIS_toolbox\scripts folder and take a look at the las2text.py.
At the beginning it looks complicated, but it isn't.
I won't explain all but i will try to give you an idea.
# this defines the LAStoos\bin\las2txt.exe path and writes it to an array
lastools_path = lastools_path + "\\bin"
las2txt_path = lastools_path+"\\las2txt.exe"
command = ['"'+las2txt_path+'"']
# add input LiDAR
command.append("-i")
command.append('"'c:\INPUTFOLDER'"')
# add parameters
command.append("MYPARAMETER")
and so on ...
#finally run las2txt
process = subprocess.Popen(command)
Cheers,
David
------ Originalnachricht ------
Gesendet: 04.05.2018 16:41:50
Betreff: [LAStools] Execute las2txt.exe in existing Python script