forked from LAStools/LAStools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlasinfo_README.txt
469 lines (383 loc) · 17.5 KB
/
lasinfo_README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
****************************************************************
lasinfo:
Reports the contents of the header and a short summary of the
points. Warns when there is a difference between the header
information and the point content. When run with option '-cd'
or '-compute_density', lasinfo will compute the point density.
All differences can be repaired with the '-repair' option. The
option '-repair_bb' will only repair (or tighten) the bounding
box while '-repair_counters' will only repair wrong reported
number of points.
By default the output of lasinfo goes to stderr. The output can
be suppressed with '-quiet' or changed to '-stdout'. To write
to a particular file use '-o output.txt' or '-otxt' which stores
the lasinfo report to "lidar.txt" assuming the file has the name
"lidar.las". With the option '-odix _info' you change the name
to "lidar_info.txt" and with '-odir E:\reports' you choose a
particular directory. These options are especially useful in
batch mode such as:
lasinfo -i *.laz -otxt -odir ..\reports -odix _info -cores 3
The tool can also be used to modify various other entries in
the header as described below. This needs to be done with care
as such changes can potentially corrupt the file.
In case you just want to report or modify the header entries
you can skip the parsing of the points with '-no_check'. Some
LAS files have excessive amounts of VLRs. You can supress them
being output with '-no_vlrs'. By default lasinfo reports the
min and the max of every point attribute after parsing all the
points. You can supress this with '-no_min_max'. By default the
tool also counts the points falling outside the header bounding
box. This can be disabled with '-no_check_outside'. If instead
you want to report all the individual points that fall outside
use '-report_outside'. Another interesting option is to report
the GPS time min and max as '-gps_week' in case it is stored as
adjusted Standard GPS time.
There are a lot of ways that lasinfo can be used to modify the
contents of the LAS header *in place* without copying the file
and the GUI will teach you these command line options. Some not
listed in the GUI are:
-set_GUID F794F8A4-A23E-421E-A134-ACF7754E1C54
-set_system_identifier "RIEGL Optech Leica"
-set_generating_software "awesome LAStools"
-set_file_source_ID 27
-set_file_creation 8 2007
-auto_date
-set_global_encoding 1
For updates check the website or join the LAStools mailing list.
http://lastools.org/
http://groups.google.com/group/lastools/
http://twitter.com/lastools/
http://facebook.com/lastools/
http://linkedin.com/groups?gid=4408378
Martin @lastools
****************************************************************
example usage:
>> lasinfo lidar.las
reports all information to stderr.
>> lasinfo -i lidar1.las lidar2.las -merged
reports all information for a merged LAS file that contains the
merged contents of lidar1.las and lidar2.las to stderr.
>> lasinfo -i lidar1.las lidar2.las
reports the information of the two files individually to stderr.
>> lasinfo *.las -merged -stdout
reports information for all files merged to stdout.
>> lasinfo *.las -stdout
reports information for all files individually to stdout.
>> lasinfo *.las -odix _info
reports information for all files individually to *_info.txt
>> lasinfo -i lidar.las -o lidar_info.txt
reports the information to a text file called lidar_info.txt.
>> lasinfo -i lidar.las -no_header
supresses the reporting of the header information (short: '-nh').
>> lasinfo -i lidar.las -no_vlrs
supresses the reporting of variable length records (short: '-nv').
>> lasinfo -i lidar.las -no_min_max
supresses the reporting of minimum/maximum value for each attribute
of the point records (short: '-nmm').
>> lasinfo -i lidar.las -no_check_outside
supresses checking whether points fall outside of the bounding box that
is reported in the header (short: '-nco').
>> lasinfo -i lidar.las -report_outside
reports the index and the coordinates of each point that falls outside
of the bounding box that is reported in the header (short: '-ro').
>> lasinfo -i lidar.las -nh -nv -progress 1000000
supresses reporting of the header information and the vlrs and reports
progress each time 1,000,000 points are parsed.
>> lasinfo -i lidar.las -no_check
only reports header information (short: '-nc'). does not parse the points.
>> lasinfo -i lidar.las -compute_density
computes and reports a good estimate of the point density (short: '-cd').
>> lasinfo -i lidar.las -repair_bb
corrects missing or wrong bounding box info in the header.
>> lasinfo -i lidar.las -repair_counters
corrects missing or wrong point number info in the header.
>> lasinfo -i lidar.las -set_file_source_ID 27
sets the file source ID in the LAS header to 27.
>> lasinfo -i lidar.las -auto_date
sets the file creation day/year in the header to the creation date of the file.
>> lasinfo -i lidar.las -set_file_creation 8 2007
sets the file creation day/year in the header to 8/2007
>> lasinfo -i lidar.las -set_system_identifier "hello world!"
copies the first 31 characters of the string into the system_identifier field of the header
>> lasinfo -i lidar.las -set_generating_software "this is a test (-:"
copies the first 31 characters of the string into the generating_software field of the header
>> lasinfo -i lidar.las -set_bounding_box 4100000 1800000 150 4110000 1810000 400
sets the bounding box in the header to min_x=4100000, max_x=4110000, min_y=1800000, ...
>> lasinfo -i lidar.las -set_offset 3000000 1000000 0
CAREFUL! sets the offset in the LAS header to 3000000 1000000 0 without changing
the point coordinates. hence this will, in general, translate the point cloud.
>> lasinfo -i lidar.las -set_scale 0.001 0.001 0.001
CAREFUL! sets the scale in the LAS header to 0.001 0.001 0.001 without changing
the point coordinates. hence this will, in general, scale the point cloud.
>> lasinfo -i lidar.las -set_global_encoding 1
CAREFUL! sets the global encoding field of the LAS header to 1 without checking
whether this will corrupt the file.
>> lasinfo -i lidar.las -set_version 1.1
CAREFUL! sets the version field of the LAS header to 1.1 without checking whether
this will corrupt the file.
>> lasinfo -i lidar.las -set_header_size 235
CAREFUL! sets the header size field of the LAS header to 235 without checking
whether this will corrupt the file.
>> lasinfo -i lidar.las -set_offset_to_point_data 460
CAREFUL! sets the offset to point data field of the LAS header to 460 without
checking whether this will corrupt the file.
>> lasinfo -i lidar.las -set_point_data_format 1
CAREFUL! sets the point data format field of the LAS header to point type 1
without checking whether this will corrupt the file.
>> lasinfo -i lidar.las -set_point_data_record_length 32
CAREFUL! sets the point data record length field of the LAS header to size 32
without checking whether this will corrupt the file.
>> lasinfo -i lidar.las -set_start_of_waveform_data_packet_record 0
CAREFUL! sets the start of waveform data packet record field of the LAS header
to 0 without checking whether this will corrupt the file.
****************************************************************
overview of all tool-specific switches:
-v : more info reported in console
-vv : even more info reported in console
-quiet : nothing reported in console
-wait : wait for <ENTER> in the console at end of process
-version : reports this tool's version number
-fail : fail if license expired or invalid
-gui : start with files loaded into GUI
-cores 4 : process multiple inputs on 4 cores in parallel
-rename lala : renames input file 'fusa.laz' to 'lala_277750_6122250.laz'
-nh or -no_header : don't output LAS header information
-nv or -no_vlrs : don't output VLR information
-nr or -no_returns : don't output return information
-nmm or -no_min_max : don't output point minimum / maximum entry information
-nw or -no_warnings : don't output WARNINGs
-nc or -no_check : don't parse points (only check header and VLRs)
-cd or -compute_density : compute rough approximation for covered area, density, and spacing
-gw or -gps_week : compute the GPS week (if data is Asjusted Standard GPS time)
-nco or -no_check_outside : don't check whether points fall outside of LAS header bounding box
-ro or -report_outside : report attributes of each point that falls outside of LAS header bounding box
-subseq 1000000 2000000 : only load subsequence from 1 millionth to 2 millionth point
-start_at_point 1500000 : start loading from point at position 1500000 in the file
-stop_at_point 5000000 : stop loading points once the 5 millionth point was read
-repaid_bb : set (in place) the bounding box in header such that it tightly enclose the points in the file
-repair_counters : set (in place) the counters for point number and (extended) return histograms in header
-repair : repair both bounding box and counters
-auto_date : set (in place) creation year / day of year in header automatically based on file creation date
-set_file_source_ID 23 : set (in place) file source ID in header to 23
-set_file_source_ID_from_point_source_ID : set (in place) file source ID in header to value that *all* points have in point source ID
-set_GUID F794F8A4-A23E-421E-A134-ACF7754E1C54 : sets the GUID in header (assuming it is given in example hexadecimal format shown)
-set_system_identifier
-set_generating_software
-set_bb
-set_offset
-set_scale
-set_global_encoding
-set_version
-set_creation_date
-set_number_of_point_records
-set_number_of_points_by_return
-set_header_size
-set_offset_to_point_data
-set_number_of_variable_length_records
-set_point_data_format
-set_point_data_record_length
-set_start_of_waveform_data_packet_record
-set_geotiff_epsg 32755 : adds EPSG code in-place when other GeoTIFF tags present
-suppress_z : do not decompress z for native LAS 1.4 point types 6 to 10
-suppress_classification : do not decompress classification for native LAS 1.4 point types 6 to 10
-suppress_flags : do not decompress flags for native LAS 1.4 point types 6 to 10
-suppress_intensity : do not decompress intensity for native LAS 1.4 point types 6 to 10
-suppress_user_data : do not decompress user data for native LAS 1.4 point types 6 to 10
-suppress_point_source : do not decompress point source ID for native LAS 1.4 point types 6 to 10
-suppress_scan_angle : do not decompress scan angle for native LAS 1.4 point types 6 to 10
-suppress_RGB : do not decompress RGB for native LAS 1.4 point types 6 to 10
-suppress_extra_bytes : do not decompress "extra bytes" for native LAS 1.4 point types 6 to 10
-progress 10000000 : report progress every 10 million points
****************************************************************
for more info:
D:\LAStools\bin>lasinfo -h
Filter points based on their coordinates.
-keep_tile 631000 4834000 1000 (ll_x ll_y size)
-keep_circle 630250.00 4834750.00 100 (x y radius)
-keep_xy 630000 4834000 631000 4836000 (min_x min_y max_x max_y)
-drop_xy 630000 4834000 631000 4836000 (min_x min_y max_x max_y)
-keep_x 631500.50 631501.00 (min_x max_x)
-drop_x 631500.50 631501.00 (min_x max_x)
-drop_x_below 630000.50 (min_x)
-drop_x_above 630500.50 (max_x)
-keep_y 4834500.25 4834550.25 (min_y max_y)
-drop_y 4834500.25 4834550.25 (min_y max_y)
-drop_y_below 4834500.25 (min_y)
-drop_y_above 4836000.75 (max_y)
-keep_z 11.125 130.725 (min_z max_z)
-drop_z 11.125 130.725 (min_z max_z)
-drop_z_below 11.125 (min_z)
-drop_z_above 130.725 (max_z)
-keep_xyz 620000 4830000 100 621000 4831000 200 (min_x min_y min_z max_x max_y max_z)
-drop_xyz 620000 4830000 100 621000 4831000 200 (min_x min_y min_z max_x max_y max_z)
Filter points based on their return number.
-first_only -keep_first -drop_first
-last_only -keep_last -drop_last
-drop_first_of_many -drop_last_of_many
-keep_middle -drop_middle
-keep_return 1 2 3
-drop_return 3 4
-keep_single -drop_single
-keep_double -drop_double
-keep_triple -drop_triple
-keep_quadruple -drop_quadruple
-keep_quintuple -drop_quintuple
Filter points based on the scanline flags.
-drop_scan_direction 0
-scan_direction_change_only
-edge_of_flight_line_only
Filter points based on their intensity.
-keep_intensity 20 380
-drop_intensity_below 20
-drop_intensity_above 380
-drop_intensity_between 4000 5000
Filter points based on their classification.
-keep_class 1 3 7
-drop_class 4 2
-drop_synthetic -keep_synthetic
-drop_keypoint -keep_keypoint
-drop_withheld -keep_withheld
-drop_overlap -keep_overlap
Filter points based on their user data.
-keep_user_data 1
-drop_user_data 255
-keep_user_data_between 10 20
-drop_user_data_below 1
-drop_user_data_above 100
-drop_user_data_between 10 40
Filter points based on their point source ID.
-keep_point_source 3
-keep_point_source_between 2 6
-drop_point_source 27
-drop_point_source_below 6
-drop_point_source_above 15
-drop_point_source_between 17 21
Filter points based on their scan angle.
-keep_scan_angle -15 15
-drop_abs_scan_angle_above 15
-drop_scan_angle_below -15
-drop_scan_angle_above 15
-drop_scan_angle_between -25 -23
Filter points based on their gps time.
-keep_gps_time 11.125 130.725
-drop_gps_time_below 11.125
-drop_gps_time_above 130.725
-drop_gps_time_between 22.0 48.0
Filter points based on their wavepacket.
-keep_wavepacket 0
-drop_wavepacket 3
Filter points with simple thinning.
-keep_every_nth 2
-keep_random_fraction 0.1
-thin_with_grid 1.0
-thin_with_time 0.001
Transform coordinates.
-translate_x -2.5
-scale_z 0.3048
-rotate_xy 15.0 620000 4100000 (angle + origin)
-translate_xyz 0.5 0.5 0
-translate_then_scale_y -0.5 1.001
-switch_x_y -switch_x_z -switch_y_z
-clamp_z_below 70.5
-clamp_z 70.5 72.5
Transform raw xyz integers.
-translate_raw_z 20
-translate_raw_xyz 1 1 0
-clamp_raw_z 500 800
Transform intensity.
-scale_intensity 2.5
-translate_intensity 50
-translate_then_scale_intensity 0.5 3.1
-clamp_intensity 0 255
-clamp_intensity_above 255
Transform scan_angle.
-scale_scan_angle 1.944445
-translate_scan_angle -5
-translate_then_scale_scan_angle -0.5 2.1
Change the return number or return count of points.
-repair_zero_returns
-set_return_number 1
-change_return_number_from_to 2 1
-set_number_of_returns 2
-change_number_of_returns_from_to 0 2
Modify the classification.
-set_classification 2
-change_classification_from_to 2 4
-classify_z_below_as -5.0 7
-classify_z_above_as 70.0 7
-classify_z_between_as 2.0 5.0 4
-classify_intensity_above_as 200 9
-classify_intensity_below_as 30 11
-change_extended_classification_from_to 6 46
Change the flags.
-set_withheld_flag 0
-set_synthetic_flag 1
-set_keypoint_flag 0
-set_extended_overlap_flag 1
Modify the extended scanner channel.
-set_extended_scanner_channel 2
Modify the user data.
-set_user_data 0
-change_user_data_from_to 23 26
Modify the point source ID.
-set_point_source 500
-change_point_source_from_to 1023 1024
-copy_user_data_into_point_source
-bin_Z_into_point_source 200
-bin_abs_scan_angle_into_point_source 2
Transform gps_time.
-translate_gps_time 40.50
-adjusted_to_week
-week_to_adjusted 1671
Transform RGB colors.
-scale_rgb_down (by 256)
-scale_rgb_up (by 256)
Supported LAS Inputs
-i lidar.las
-i lidar.laz
-i lidar1.las lidar2.las lidar3.las -merged
-i *.las - merged
-i flight0??.laz flight1??.laz
-i terrasolid.bin
-i esri.shp
-i nasa.qi
-i lidar.txt -iparse xyzti -iskip 2 (on-the-fly from ASCII)
-i lidar.txt -iparse xyzi -itranslate_intensity 1024
-lof file_list.txt
-stdin (pipe from stdin)
-rescale 0.01 0.01 0.001
-rescale_xy 0.01 0.01
-rescale_z 0.01
-reoffset 600000 4000000 0
Fast AOI Queries for LAS/LAZ with spatial indexing LAX files
-inside min_x min_y max_x max_y
-inside_tile ll_x ll_y size
-inside_circle center_x center_y radius
Supported LAS Outputs
-o lidar.las
-o lidar.laz
-o xyzta.txt -oparse xyzta (on-the-fly to ASCII)
-o terrasolid.bin
-o nasa.qi
-odir C:\data\ground (specify output directory)
-odix _classified (specify file name appendix)
-ocut 2 (cut the last two characters from name)
-olas -olaz -otxt -obin -oqfit (specify format)
-stdout (pipe to stdout)
-nil (pipe to NULL)
LAStools (by [email protected]) version 150526
usage:
lasinfo -i lidar.las
lasinfo -i lidar.las -compute_density -o lidar_info.txt
lasinfo -i *.las
lasinfo -i *.las -single -otxt
lasinfo -no_header -no_vlrs -i lidar.laz
lasinfo -nv -nc -stdout -i lidar.las
lasinfo -nv -nc -stdout -i *.laz -single | grep version
lasinfo -i *.laz -subseq 100000 100100 -histo user_data 8
lasinfo -i *.las -repair
lasinfo -i *.laz -repair_bb -set_file_creation 8 2007
lasinfo -i *.las -repair_counters -set_version 1.2
lasinfo -i *.laz -set_system_identifier "hello world!" -set_generating_software "this is a test (-:"
----
if you find bugs let me ([email protected]) know.