lasinfo give a overview about the file, this should be first if any problem occur:
ver: LAS 1.4 [pnt=6|len=30]
point count: 14.263.011
scale x y z: 0.01 0.01 0.01
offset x y z: 0 0 0
min x y z: -2,205,025.00 1,564,475.00 325.69
max x y z: -2,204,475.01 1,565,024.99 562.92
range x y z: 549.99 549.99 237.23
LAS/LAZ files have a 4 byte value range. Your numbers stretch this range very well, without using a offset in your data.
The solution for this is quite simple:
lasoptimize64 -i -2205000_1564500.laz -o tmp.laz
will reorganize your data and set a suitable offset.
ver: LAS 1.4 [pnt=6|len=30]
point count: 14.263.011
scale x y z: 0.01 0.01 0.01
offset x y z: -2,200,000 1,500,000 0
min x y z: -2,205,025.00 1,564,475.00 325.69
max x y z: -2,204,475.01 1,565,024.99 562.92
range x y z: 549.99 549.99 237.23
After this, las2dem will process the data fast and efficient.
More notes:
- avoid *wine* if a problem occur, this will reduce one step of complexity. We have all LAStools able to run on linux.
- prefer the 64 bit versions of the tool if you work with windows tools. So best use "las2dem64" instead of "las2dem".
Cheers,
Jochen @rapidlasso