Hi Martin,
Do you know if the parameter -use_orig_bb can be use in las2txt?
This is my line
las2txt.exe -i %LIDAR%\*.laz -keep_class 9 -use_orig_bb -odir %OUTLIDAR% -otxt -parse txyzr -sep comma -cores 20
And this is the error
ERROR: cannot understand argument ‘use_orig_bb’
Thanks
Susana
Susana Gonzalez - Forest Engineer, LiDAR Science
Interpine Group Ltd
DDI:
+64 7 350 3209
or
Australia 0280113645 ext 722
Skype: sugonar
Address : 99 Sala Street, PO Box 1209, Rotorua 3010, New Zealand
Website : www.interpine.co.nz
Interpine Innovation is Shaping Today’s Forests with the Technology of Tomorrow
He rangahau tenei ra he hangarau apopo
--
Download LAStools at
http://lastools.org
http://rapidlasso.com
Be social with LAStools at
http://facebook.com/LAStools
http://twitter.com/LAStools
http://linkedin.com/groups/LAStools-4408378
Manage your settings at
http://groups.google.com/group/lastools/subscribe
Hi Martin,
My goal is to extract the highest point in a cell grid of 3x3m within 500x500m tiles. Because 500m is not divisible by 3m, it is important to buffer the tiles as we don’t want to select a high point at the intersection of two tiles that is not the highest point in the 3x3m cell.
The first step is running lasthin to get the highest points inside of a grid cell of 3x3m.
lasthin.exe -i %INCDATA%\*.laz ^
-drop_class 7 -step 3 -highest -classify_as 9 ^
-odir %OUTLIDAR% -odix _ht -olaz ^
-cores 20
And then, I extract the values by tile
las2txt.exe -i %OUTLIDAR%\1876500_5595500_hnom_d_ht.laz -inside_tile 1876500 5595500 500 -keep_class 9 -odir %OUTLIDAR% -otxt -parse xyz -ocut 9 -odix xyz -sep comma
The txt file with the highest points looks like the image below over a grid cell of 3x3m (the fish net was created with same starting coordinates as the low left of the tile)
Why am I getting sometimes more than one high point in a cell and sometimes none?

Thank you for your time
Susana
Hi Martin,
My goal is to extract the highest point in a cell grid of 3x3m within 500x500m tiles. Because 500m is not divisible by 3m, it is important to buffer the tiles as we don’t want to select a high point at the intersection of two tiles that is not the highest point in the 3x3m cell.
--