Changes between Version 8 and Version 9 of Processing/LidarWining
- Timestamp:
- Sep 2, 2009, 11:22:29 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Processing/LidarWining
v8 v9 25 25 === Differentiating flightlines by color === 26 26 27 (untested)28 29 27 * Add a different classification number to each LAS file, using knpa's classification utility: 30 28 * run `las_single_class.py -i INPUTNAME -o OUTPUTNAME -c CLASSIFICATION_NUMBER` (classifications can be 0-255) 29 * if you have a directory full of las files to classify, cd into it and paste the following: 30 {{{ 31 mkdir classified_las 32 counter=1 33 for lasfile in *LAS ; do 34 echo $counter $lasfile 35 las_single_class.py -i $lasfile -o classified_las/$lasfile -c $counter 36 counter=$(( $counter + 1)) 37 done 38 }}} 31 39 * Load into FugroViewer 32 * Colo r points by classification40 * Colour points by classification (settings menu -> point color -> classification)