NLeSC / Massive-PotreeConverter

Convert massive pointcloud, for example ahn2 (640 Billion points) to potree format.
Apache License 2.0
81 stars 19 forks source link

MPC tilling generates incorret PDAL split call when we use negative origins, #22

Open romulogoncalves opened 6 years ago

romulogoncalves commented 6 years ago

When calling mpc_tilling and we define an negative negative pdal split reports that no value was provided.

pdal split -i C_25EZ2.laz -o ./3/C_25EZ2.laz --origin_x -212.6837 --origin_y 99063.1429 --length 2816.85898203

PDAL: kernels.split: Argument 'origin_x' needs a value and none was provided.

To get around we need to use the assignment syntax: --origin_x=-212.6837

romulogoncalves commented 6 years ago

Solved by #24