Index: raster/r.in.lidar/r.in.lidar.html =================================================================== --- raster/r.in.lidar/r.in.lidar.html (revision 68392) +++ raster/r.in.lidar/r.in.lidar.html (working copy) @@ -254,13 +254,45 @@
 g.region raster=elevation -p
-r.in.lidar input=points.las output=height_above_ground base_raster=elevation
+r.in.lidar input=points.las output=mean_height_above_ground base_raster=elevation method=mean
 
In this type of computation, it might be advantageous to change the resolution to match the precision of the points rather than deriving it from the base raster. +

Multiple file input

+The file option requres a file that contains a list of file names with the full +path. For example, a list of files in the directory /home/user/data: +
+points1.laz
+points2.laz
+points3.laz
+
+ +would be lised in the file as: +
+/home/user/data/points1.laz
+/home/user/data/points2.laz
+/home/user/data/points3.laz
+
+On Linux and OSX, this file can be automatically generated with the command: +
+ls /home/user/data/*.laz > /home/user/data/filelist.txt
+
+On Windows: +
+dir /b c:\users\user\data\*.laz > c:\users\user\data\filelist.txt
+
+ +The mean height above ground example above would then be: + +
+g.region raster=elevation -p
+r.in.lidar file=/home/user/data/filelist.txt output=mean_height_above_ground base_raster=elevation method=mean
+
+ +

TODO