Changes between Version 8 and Version 9 of Processing/LidarWining


Ignore:
Timestamp:
Sep 2, 2009, 11:22:29 AM (15 years ago)
Author:
mggr
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Processing/LidarWining

    v8 v9  
    2525=== Differentiating flightlines by color ===
    2626
    27 (untested)
    28 
    2927 * Add a different classification number to each LAS file, using knpa's classification utility:
    3028   * 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{{{
     31mkdir classified_las
     32counter=1
     33for 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))
     37done
     38}}}
    3139 * Load into FugroViewer
    32  * Color points by classification
     40 * Colour points by classification (settings menu -> point color -> classification)