Skip to main content
Question

How to combine polygons with attributes

  • June 6, 2019
  • 2 replies
  • 417 views

I have a line feature with points nearby that I have created 1. line buffer polygon 2. Points polygon from hull replacer and then hull accumulator. I now want to merge these into 1 polygon and combine the attributes of the 2. I tried using spatialRelator and the attributes come across from the 2 features but it only preserve the base geometry which is the line buffer polygon. I tried using aggregator but no luck. The screenshot shows the 2 features with the narrow strip is the hull accumulator polygon.

Thanks in advance for the help.

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

redgeographics
Celebrity
Forum|alt.badge.img+60
  • Celebrity
  • 3701 replies
  • June 6, 2019

A Dissolver could be another thing to try, but you need to have a way to relate them too. If you run everything through a Dissolver it will create one big polygon of the whole thing, is that what you want?

Do check out the Attribute Accumulation part of the Dissolver parameters then to tell it what to do with the attributes. Same if you decide to use the Aggregator or SpatialRelator.


  • Author
  • 1 reply
  • June 7, 2019

Thanks @redgeographics. I was able to get this to work. I had to convert the points to line first using point connector and then buffer the line. Hull accumulator transformer created a sliver polygon and the dissolver did not appear to work. As you mentioned, I had to use dissolver and then aggregator after SpatialRelator. Thanks for the help.