Create AreaBoundary lines from coordinates

Hello,
Is there a way to create area boundary lines from a list of coordinates, alternately first create model lines and then convert to area boundary lines ? Also could this be done with OOTB nodes?

  • Rickard

Yes this is doable. A pseudo code outline:

  1. Use the coordinates to define points.
  2. Create a closed curve via a Polygon.ByPoints node.
  3. Geometry.Explode to get the individual curves.
  4. Use the AreaSeparater.FromCurve in the Clockwork package to create the area boundaries.
2 Likes

Thanks for this, it helped get me through figuring out my script today.

1 Like