Skip to main content
Question

Clone a polygon x times

  • June 2, 2017
  • 1 reply
  • 33 views

salvaleonrp
Enthusiast
Forum|alt.badge.img+21

I have one polygon intersecting a pole. There are 2911 features on this pole feature class, there's only one polygon. After the pole feature class reader, I have a counter that counts the features, I want to use the max count of the counter to pass to the polygon cloner. See workspace below. My cloner number of copies is manually typed. I know I can use the statscalculator, but I'm looking for other options. The rest of the workspace - offsetting coor0 of each cloned polygon to a pole already works.

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.

1 reply

takashi
Celebrity
  • June 2, 2017

Hi @salvaleonrp, a possible way is to use a FeatureMerger (point -> Requestor, polygon -> Supplier) with these parameters.

  • Join On: 1 to 1 (unconditional merging)
  • Feature Merge Type: Attributes and Geometry
  • Accumulation Mode: Merge Supplier
  • Conflict Resolution: Use Supplier

There should be several ways. Hope someone posts other approaches to be discussed.