1::
2:: an example batch script for classifying a single LAS file
3::
4
5echo off
6
7set PATH=%PATH%;C:\lastools\bin;
8
9lasground -v -i %1 -city -fine -o temp1.las
10lasheight -i temp1.las -o temp2.las
11del temp1.las
12lasclassify -v -i temp2.las -o %1 -odix _classified -olaz
13del temp2.las
14