Changeset 68403
- Timestamp:
- May 7, 2016, 7:54:35 PM (8 years ago)
- File:
-
- 1 edited
-
grass/trunk/raster/r.in.lidar/r.in.lidar.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
grass/trunk/raster/r.in.lidar/r.in.lidar.html
r68402 r68403 260 260 <div class="code"><pre> 261 261 g.region raster=elevation -p 262 r.in.lidar input=points.las output= height_above_ground base_raster=elevation262 r.in.lidar input=points.las output=mean_height_above_ground base_raster=elevation method=mean 263 263 </pre></div> 264 264 … … 266 266 to match the precision of the points rather than deriving it from the base raster. 267 267 <!-- TODO: say how --> 268 <h3>Multiple file input</h3> 269 270 The file option requres a file that contains a list of file names with the full 271 path. For example, a list of files in the directory /home/user/data: 272 <div class="code"><pre> 273 points1.laz 274 points2.laz 275 points3.laz 276 </pre></div> 277 278 would 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> 284 On Linux and OSX, this file can be automatically generated with the command: 285 <div class="code"><pre> 286 ls /home/user/data/*.laz > /home/user/data/filelist.txt 287 </pre></div> 288 On Windows: 289 <div class="code"><pre> 290 dir /b c:\users\user\data\*.laz > c:\users\user\data\filelist.txt 291 </pre></div> 292 293 The mean height above ground example above would then be: 294 295 <div class="code"><pre> 296 g.region raster=elevation -p 297 r.in.lidar file=/home/user/data/filelist.txt output=mean_height_above_ground base_raster=elevation method=mean 298 </pre></div> 299 268 300 269 301 <h2>TODO</h2>
Note:
See TracChangeset
for help on using the changeset viewer.
