Skip to main content
Solved

Extrude polygon to heights

  • September 25, 2018
  • 2 replies
  • 17 views

Forum|alt.badge.img

A 2D-polygon that i want to extrude to a max height that I've calculated with a statistic calculator. Now i want to add the attribute with the height I've calculated to the 2D-polygon so i can use it as teh vertica ldistance to extrude withe the extrude transformer.

How can I add an attribute with a attribute value to a polygon?

Best answer by takashi

Hi @hadhafang, if you are looking for a way to merge an attribute storing the max height value to a polygon feature unconditionally, the FeatureMerger could help you.

  • Send the polygon feature to the Requestor port,
  • send the feature having the max height attribute to the Supplier port,
  • and set an identical constant value (e.g. 1) to the Join On for both Requestor and Supplier.
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 26, 2018

Hi @hadhafang, if you are looking for a way to merge an attribute storing the max height value to a polygon feature unconditionally, the FeatureMerger could help you.

  • Send the polygon feature to the Requestor port,
  • send the feature having the max height attribute to the Supplier port,
  • and set an identical constant value (e.g. 1) to the Join On for both Requestor and Supplier.

Forum|alt.badge.img
  • Author
  • 14 replies
  • September 27, 2018

Hi @hadhafang, if you are looking for a way to merge an attribute storing the max height value to a polygon feature unconditionally, the FeatureMerger could help you.

  • Send the polygon feature to the Requestor port,
  • send the feature having the max height attribute to the Supplier port,
  • and set an identical constant value (e.g. 1) to the Join On for both Requestor and Supplier.
Thank you @takashi