Can anyone provide a right and fast solution to this matter? Thank you!
@takashi @jdh @danatsafe @mark2atsafeIf you have a limited amount of points in the shape file, you could buffer them using a Bufferer and then clip the pointcloud using the Clipper.
This will limit the pointcloud data to only use those points near a shape point.
Then use your approach with the PointCloudCoercer and NeighborFinder to find the exact closest point.
Hope this helps.
@bobo Keep in mind that the NeighborFinder returns distances in only 2D.
@bobo Keep in mind that the NeighborFinder returns distances in only 2D.
Yeah, the points in the shp file are 2D, I only need to find the nearest point in the las file at projection position. But since you brought it up, is there a transformer could perform like NeighborFinder in 3D?
If you have a limited amount of points in the shape file, you could buffer them using a Bufferer and then clip the pointcloud using the Clipper.
This will limit the pointcloud data to only use those points near a shape point.
Then use your approach with the PointCloudCoercer and NeighborFinder to find the exact closest point.
Hope this helps.
Thank you, got it work. How silly am I, I thought that Clipper can only used for vector or raster files.