Question

Extract ground points along a polyline from LAZ files

  • 6 December 2022
  • 2 replies
  • 10 views

Userlevel 1
Badge +8

I have a lot of LAZ files and generate a couple of polylines in ArcGIS. for these polylines I need to extract the points classified as 'ground' from the LAZ files.

What transformer allows me to do that, and how to deal with polylines intersecting with several LAZ files?


2 replies

Userlevel 2
Badge +12
  • Read all LAS
  • Filter ground-points (@Component(classification)==2) (PointCloudFilter)
  • Read all polylines
  • Buffer the polylines
  • merge all buffer-area (dissolver)
  • clip the pointclouds (clipper)
Userlevel 1
Badge +8

Thanks Tom,

 

your suggestion works fine!

I ended up using the SurfaceDraper in connection with a VertexExtractor.

Reply