Changeset 68403


Ignore:
Timestamp:
May 7, 2016, 7:54:35 PM (8 years ago)
Author:
wenzeslaus
Message:

r.in.lidar: file list generation to documenetation (author: Doug Newcomb, closes #3026)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • grass/trunk/raster/r.in.lidar/r.in.lidar.html

    r68402 r68403  
    260260<div class="code"><pre>
    261261g.region raster=elevation -p
    262 r.in.lidar input=points.las output=height_above_ground base_raster=elevation
     262r.in.lidar input=points.las output=mean_height_above_ground base_raster=elevation method=mean
    263263</pre></div>
    264264
     
    266266to match the precision of the points rather than deriving it from the base raster.
    267267<!-- TODO: say how -->
     268<h3>Multiple file input</h3>
     269
     270The file option requres a file that contains a list of file names with the full
     271path. For example, a list of files in the directory /home/user/data:
     272<div class="code"><pre>
     273points1.laz
     274points2.laz
     275points3.laz
     276</pre></div>
     277
     278would be lised in the file as:
     279<div class="code"><pre>
     280/home/user/data/points1.laz
     281/home/user/data/points2.laz
     282/home/user/data/points3.laz
     283</pre></div>
     284On Linux and OSX, this file can be automatically generated with the command:
     285<div class="code"><pre>
     286ls /home/user/data/*.laz > /home/user/data/filelist.txt
     287</pre></div>
     288On Windows:
     289<div class="code"><pre>
     290dir /b c:\users\user\data\*.laz > c:\users\user\data\filelist.txt
     291</pre></div>
     292
     293The mean height above ground example above would then be:
     294
     295<div class="code"><pre>
     296g.region raster=elevation -p
     297r.in.lidar file=/home/user/data/filelist.txt output=mean_height_above_ground base_raster=elevation method=mean
     298</pre></div>
     299
    268300
    269301<h2>TODO</h2>
Note: See TracChangeset for help on using the changeset viewer.