las2txt

A simple open source tool licensed LGPL 2.1 that converts binary LAS or LAZ files to human readable ASCII text format. Below is an example command line that converts one LAZ file to text by placing the x, y, and z coordinate of each point as the 1st, 2nd, and 3rd entries, the intensity as the 4th entry, and the gps_time as the 5th entry of each line. The entries are separated by commas.

las2txt -i lidar.laz ^
        -parse xyzit ^
        -sep comma ^
        -o lidar.txt

For more details see the README file.

Nach oben scrollen