Hello FME Experts,
I am working on processing a point cloud and need to create height-based sections to later filter the point cloud accordingly. Here is my goal:
- Extract the minimum and maximum height of the point cloud (already done).
- Create sections every 1m, starting from the minimum height up to the maximum height.
- For each section, create a buffer of
±0.5m
(so each section spans 1m). - Finally, filter the point cloud to extract the slices based on these buffers.
My idea is to extract the Bounding box of the pointcloud, extrude it 0.5m lower, and then slice it starting from bottom every 1m until reaching zmax, and use them with Clipper.
How can i slice this bounding box?
I thought about creating a new attribut Number of slices = zmax - zmin and then use it as increment? or is there a simpler solution?
Thank you for your help