Skip to main content
Question

Extract ground points along a polyline from LAZ files

  • December 6, 2022
  • 2 replies
  • 67 views

tb09114
Supporter
Forum|alt.badge.img+27

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

tomfriedl
Contributor
Forum|alt.badge.img+13
  • Contributor
  • 177 replies
  • December 6, 2022
  • 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)

tb09114
Supporter
Forum|alt.badge.img+27
  • Author
  • Supporter
  • 67 replies
  • December 16, 2022

Thanks Tom,

 

your suggestion works fine!

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