~ubuntu-branches/ubuntu/trusty/liblas/trusty-proposed

« back to all changes in this revision

Viewing changes to doc/utilities/lasmerge.txt

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2014-01-05 17:00:29 UTC
  • mfrom: (7.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140105170029-ddtp0j63x5jvck2u
Tags: 1.7.0+dfsg-2
Fixed missing linking of system boost component.
(closes: #733282)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.. raw:: pdf
 
2
 
 
3
    PageBreak
 
4
    
 
5
.. _lasmerge:
 
6
    
 
7
****************************************************************
 
8
  lasmerge: merge multiple LAS files into a single file
 
9
****************************************************************
 
10
 
 
11
:Author: Martin Isenburg
 
12
:Contact: isenburg@cs.unc.edu
 
13
 
 
14
    
 
15
lasmerge reads multiple LIDAR data files in the LAS format and merges them 
 
16
into a single file. The filenames can either be provided one by one or in 
 
17
form of a text file.
 
18
 
 
19
All the header information of the first file provided is used including 
 
20
variable and user_defined headers. but some records are updated by 
 
21
integrating the corresponding information from other headers. these are:
 
22
 
 
23
* number_of_point_records
 
24
* number_of_points_by_return[5]
 
25
* max_x, min_x, max_y, min_y, max_z, and min_z
 
26
 
 
27
In addition x_scale_factor, y_scale_factor, z_scale_factor may need to be 
 
28
increased to accommodate a possibly larger bounding box. The user can 
 
29
also set those in the command line with
 
30
 
 
31
  -scale 0.01     or     -scale_xyz  0.01 0.01 0.001
 
32
 
 
33
Similarly a new offset can be specified
 
34
 
 
35
  -xyz_offset 63025000 483450000 0
 
36
 
 
37
Usage
 
38
-----
 
39
 
 
40
::
 
41
 
 
42
  $ lasmerge -i in1.las -i in2.las -i in3.las -o out.las
 
43
 
 
44
merge the three inX.las files into one out.las file. 
 
45
 
 
46
::
 
47
 
 
48
  $ lasmerge -i las_file_list.txt -o out.las
 
49
 
 
50
merges all LAS files listed in the text file into one out.las file
 
51
 
 
52
::
 
53
 
 
54
  $ lasmerge -i las_file_list.txt -o out.las -scale 0.01 -verbose
 
55
 
 
56
merges the file and stores the LIDAR points with 0.01 accuracy in x, y, and 
 
57
z and prints out control information.
 
58
 
 
59
::
 
60
 
 
61
  $ lasmerge -i las_file_list.txt -o out.las -scale_xyz 0.01 0.01 0.001
 
62
 
 
63
same but with a different accuracy for z.
 
64
 
 
65
Help
 
66
~~~~
 
67
 
 
68
::
 
69
 
 
70
    C:\lastools\bin>lasmerge -h
 
71
    usage:
 
72
    lasmerge -i lasfiles.txt -o out.las
 
73
    lasmerge -i file1.las -i file2.las -i file3.las -o out.las
 
74
    lasmerge -i file1.las -i file2.las -olas > out.las
 
75
    lasmerge -i lasfiles.txt -scale 0.01 -verbose -o out.las
 
76
    lasmerge -h