Skip to main content
Solved

How to aggregate without losing attributes?

  • November 19, 2018
  • 2 replies
  • 180 views

Hi there!

 

 

I am trying to aggregate features here on picture.

 

Aggregation is necessary because I have to translate. scale and rotate these objects together as one object so they can fit inside certain rectangular (defined by ID).

 

Thing is, every circle has different set off attributes and when i Aggregate them and later Deaggregate them I lose unique attributes and get only one attribute set that was set by Aggregator for all circles.

Best answer by ebygomm

When aggregating make sure you generate the list which will hold all the original attributes. When deaggregating ensure that you select the Accumulation Mode only use list attribute values (assuming you don't need to keep any attributes created whilst aggregated)

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

ebygomm
Influencer
Forum|alt.badge.img+44
  • Influencer
  • 3422 replies
  • Best Answer
  • November 19, 2018

When aggregating make sure you generate the list which will hold all the original attributes. When deaggregating ensure that you select the Accumulation Mode only use list attribute values (assuming you don't need to keep any attributes created whilst aggregated)


  • Author
  • 3 replies
  • November 20, 2018

When aggregating make sure you generate the list which will hold all the original attributes. When deaggregating ensure that you select the Accumulation Mode only use list attribute values (assuming you don't need to keep any attributes created whilst aggregated)

Thank you very much. I missed List generation when aggregating. Helped me a lot!