Skip to main content
Solved

Space Delimited XYZ file Extents

  • May 2, 2017
  • 3 replies
  • 21 views

Forum|alt.badge.img+1

Hi, I have a large number of space delimited XYZ files (*.xyz) and I would like to find a way to determine the extent of the files.

I don't want the minimum bounding rectangle, but the actual boundary as it would be if I were to join all the outer points of the file together.

I thought about buffering every point in the file, then dissolving the resultant buffers, but that is very time consuming so I would like to find an alternative method if possible.

Thanks,

Best answer by david_r

Have you looked at the HullAccumulator and/or HullReplacer?

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.

3 replies

david_r
Celebrity
  • Best Answer
  • May 2, 2017

Have you looked at the HullAccumulator and/or HullReplacer?


Forum|alt.badge.img+1
  • Author
  • May 2, 2017

Have you looked at the HullAccumulator and/or HullReplacer?

Thank you David! I had no idea these transformers existed, they are exactly what I need.

 

 

 


Forum|alt.badge.img+1
  • Author
  • May 2, 2017

I now using the HullAccumulator in Concave mode.

I can't use the Convex mode because this mode does not define the geometry of the boundary correctly (it is joining points up that are nowhere near each other).

I have tried a value of 4 for the Alpha parameter in Concave mode, but the workflow is now taking too long to run. I really have no idea what sort of value I should be putting in for the Alpha parameter.... If it helps at all the points I am trying to create an extent of are at a 0.2m resolution.

Any suggestions on reasonable Alpha values to try?

Thanks,