Skip to main content
Question

How to draw extern contour of dwg plan

  • March 22, 2019
  • 7 replies
  • 15 views

Forum|alt.badge.img

Hello,i would like to calculate the surface of a dwg plan. My first approach was to make a bounding box and calculate the area but it's not precise enough.

 

 

I was wondering how i could do something like that :

 

 

 

The blue line is at 4 meters of the feature ....

 

 

I hope you see what I mean , and hope that you could help me.

 

 

Thanks a lot.

 

 

Best regards.

 

 

Steph.
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.

7 replies

ebygomm
Influencer
Forum|alt.badge.img+44
  • Influencer
  • 3429 replies
  • March 22, 2019

You could buffer the feature by 4m and then calculate the area of the polygon created


Forum|alt.badge.img
  • Author
  • 7 replies
  • March 22, 2019

You could buffer the feature by 4m and then calculate the area of the polygon created

I thought to that possibility but the thing is my drawing is made of thousands lines and I want that the most outside lines define the "polygon area"...

 

 

as you see in my drawing (sorry I'm not autocad drawer) the black lines are my features and I want to get a polygon just as the area inside de red lines

ebygomm
Influencer
Forum|alt.badge.img+44
  • Influencer
  • 3429 replies
  • March 22, 2019

I thought to that possibility but the thing is my drawing is made of thousands lines and I want that the most outside lines define the "polygon area"...

 

 

as you see in my drawing (sorry I'm not autocad drawer) the black lines are my features and I want to get a polygon just as the area inside de red lines

Ok, if your data is like that then a hull accumulator might be a better possibility. You could still use the bufferer but you would need to dissolve afterwards. Or you could aggregate then buffer.


Forum|alt.badge.img
  • Author
  • 7 replies
  • March 25, 2019

Ok, if your data is like that then a hull accumulator might be a better possibility. You could still use the bufferer but you would need to dissolve afterwards. Or you could aggregate then buffer.

Thanks for this info.

 

I didn't know this transformer.

 

 

It's a bit more what I want to achieve....

 

 

If i could reach the red line area, it would be perfect !

ebygomm
Influencer
Forum|alt.badge.img+44
  • Influencer
  • 3429 replies
  • March 25, 2019

Thanks for this info.

 

I didn't know this transformer.

 

 

It's a bit more what I want to achieve....

 

 

If i could reach the red line area, it would be perfect !

Did you try the aggregator followed by a bufferer?


itay
Supporter
Forum|alt.badge.img+18
  • Supporter
  • 1442 replies
  • March 25, 2019

Hi @stephanemarly,

It think the buffer approach might work if you aggregate your features into one feature using the aggregator transformer and then buffer it and calculate the area.

Hopes this helps,

Itay


gabriel_hirsch
Contributor
Forum|alt.badge.img+12
  • Contributor
  • 85 replies
  • March 25, 2019

If you first aggregate your features with the Aggregator and then use the HullAccumulator transformer you might end up with a result that is useful for this purpose.