Skip to main content
Solved

Create Buffer respecting Angle

  • September 4, 2017
  • 2 replies
  • 20 views

danilo_fme
Celebrity
Forum|alt.badge.img+51

Hi Team,

I need to find the solution for my problem. My Workspace has two Source - Shapefiles: - Point - Batimetry The Shapefile Point has a Attribute that represent the angle value: ground = 256.2000122. Using the transformer AttributeCreator i have a +- 5 degrees tolerante on top the attribute ground:

Result:

  • graus_up: 261.2000122
  • graus_down: 251.2000122

I would like to create a buffer oriented the values: 251.20000 until 261.2000 from the point.

After i need to Lines ( Source Batimetry ) in a within tis buffer.

I didn't find a transformer that make this possible. Attached my template file. Thanks, - Danilo

Best answer by takashi

Hi @danilo_inovacao, you can create the boundary of your desired shape (two line segments and one arc) based on the two angles and a given radius (i.e. buffer amount), then build an area from them with an AreaBuilder. e.g.

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.

2 replies

takashi
Celebrity
  • 7843 replies
  • Best Answer
  • September 5, 2017

Hi @danilo_inovacao, you can create the boundary of your desired shape (two line segments and one arc) based on the two angles and a given radius (i.e. buffer amount), then build an area from them with an AreaBuilder. e.g.


danilo_fme
Celebrity
Forum|alt.badge.img+51
  • Author
  • Celebrity
  • 2077 replies
  • September 5, 2017

Hi @danilo_inovacao, you can create the boundary of your desired shape (two line segments and one arc) based on the two angles and a given radius (i.e. buffer amount), then build an area from them with an AreaBuilder. e.g.

Hi @takashi, Thanks you so much for your effort.