Dear all
PROBLEM SOLVED, thanks to Martin's explanation and Victor's offline message.
So let me summarize here, in case someone stumbles upon the same issue later:
To get LAStools working in Qgis on Ubuntu:
1) Download the LAStools.zip distribution from
http://rapidlasso.com/LAStools2) Extract the zip archive anywhere
3) Install Wine (available through the Ubuntu Software Center)
4) In Qgis, edit the processing options (Providers / Tools for LiDAR data):
- LasTools folder: enter here the path to the folder that you have extracted from the zip archive (/some_path/LASTools)
- Wine folder: enter the path to the Wine binary (typically /usr/bin ). Alternatively, you can find where Wine is installed with the command
whereis wine
5) Since this is apparently not (yet) sufficient to get all the tools working, you still need to edit the file
LidarToolsAlgorithmProvider.py In my case, for any obscure reason, I have 2 installations of the processing toolbox and thus 2 instances of this file:
- /usr/share/qgis/python/plugins/processing/algs/lidar/LidarToolsAlgorithmProvider.py
- /home/[user]/.qgis2/python/plugins/processing/algs/lidar/LidarToolsAlgorithmProvider.py
The second one is the one actually used by Qgis and this is where I had to edit
LidarToolsAlgorithmProvider.py. :
line 145: if (True):
line 168: if (True):
line 188: if (True):
I can now start experimenting with LasTools!
Thanks a lot for your help and for this tool, that looks quite amazing :-)
Cheers
Stéphane