Skip to main content
Question

Create groundlevel polygon (including height) from las file

  • October 23, 2018
  • 1 reply
  • 12 views

stefanh
Contributor
Forum|alt.badge.img+8

I need to create a groundlevel polygon from a las file, including the height. No classification is added to the pointcloud.

It doesn't need to be precise; otherwise there would be generate to many polygons. A generalisation would be perfect.

For example I get a polygon where the height is between 17 and 17.50 meter; and another polygon where the height is between 17.50 and 18 meter

I tried serveral thing with surfacemodeller, surfacebuilder, creating buffers around the points. But I can't get my hands around this issue.

Hope someone as experience with such an analysis

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

1 reply

nathanatsafe
Safer
Forum|alt.badge.img+9
  • Safer
  • 284 replies
  • October 23, 2018

Hi @stefanh,

Have you tried the PointCloudFilter? You can chose to filter by the z component, and create an expression where it is > 17.50 and < 18 meters. Following this you could use a HullReplacer to create a very generalized polygon. Alternatively, using a PointCloudCoercer before the HullReplacer would allow you to create more precise areas out of your points.

Hope this helps,

Nathan