I'm working with a LAZ file, r.laz, available at https://awot.fi/tmp/laz/r.laz.
I'm generating PNG images representing different vegetation classes (3, 4, and 5) from this LAZ file. However, I've noticed that the resulting PNG images have different dimensions.
My goal is to create a single, merged image with these classes as separate layers: class 5 at the bottom, class 4 above that, and class 3 at the very top. Any areas not covered by these classes should be transparent.
I can easily generate individual PNG images for each class using lasgrid64:
My primary question is: How can I ensure that all the generated PNG images have the exact same dimensions so that they can be correctly layered using ImageMagick's convert command?
Is there a way to accomplish this layering directly within LAStools, perhaps using a colormap or other functionality, without having to rely on external tools like ImageMagick?