Hi @maliodpalube,
Please try using the PointCloudSimplifier transformer to thin your point cloud. This transformer uses a sophisticated algorithm to thin the point cloud while retaining its character.
Hi @DaveAtSafe,
Does this PointCloudSimplifier transformer will add more points too?
Pratap
Hi @maliodpalube,
Please try using the PointCloudSimplifier transformer to thin your point cloud. This transformer uses a sophisticated algorithm to thin the point cloud while retaining its character.
I have tried but I am not sure how to set it to keep places with higher altitude differences and how to delete some points on flat areas.
If You would be able for some hint, I would be really thankful.
I have tried but I am not sure how to set it to keep places with higher altitude differences and how to delete some points on flat areas.
If You would be able for some hint, I would be really thankful.
Hi @maliodpalube,
The transformer will automatically delete more points in the flat areas. You just need to set the degree of simplification in the Filter Ratio.
Hi @maliodpalube,
You have to divide the area based on Z value (i.e.elevation) using PointCloudFilter (it will be just like testfilter) transformer. For this, you have to filter/divide the data using expression as mentioned below...
@Component(z) < 500--> Port1
@Component(z) > 505&&
@Component(z) < 510--> Port2
and then use appropriate transformer on area wise. (Z value is just assumption, it needs to change as per your data)
Later combine all the data write to las file...
Hope this helps...
Pratap