Question

Good morning everyone, Imput1: a group of polylines in SHP or KMZ format and a LAS file. Imput2: Several LAS files How to output a Las file containing the closest points (from the imput2) to the line every 50 meters? Thank you. Alex

  • 16 May 2021
  • 1 reply
  • 1 view

Good morning everyone, Imput1: a group of polylines in SHP or KMZ format and a LAS file. Imput2: Several LAS files How to output a Las file containing the closest points (from the imput2) to the line every 50 meters? Thank you. Alex

1 reply

Userlevel 5
Badge +29

When you have the point every 50m along your line, how many points are you wanting to find? do you only want to the the one closest point, or are you looking for all points within XXm?

 

Using a PointcloudCoercer you'll be able to extract the individual points from the point cloud and use PointOnArea, SpatialRelator, SpatialFilter (theres a few spatial transformers you could use) to filter those points. Then using a PointCloudCombiner you can convert your filtered points back into a pointcloud and write them out to a LAS

Reply