Solved

Extrude polygon to heights

  • 26 September 2018
  • 2 replies
  • 3 views

Badge

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?

icon

Best answer by takashi 26 September 2018, 05:22

View original

2 replies

Userlevel 2
Badge +17

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

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

 

 

Reply