Skip to main content
Question

Creating a point featureclass

  • March 19, 2018
  • 3 replies
  • 47 views

I have 5 polygon featureclass and 1 point featureclass. I would like to create a point featureclass that contains certain attributes from each of the polygon featureclass. How would I go about doing this.

Thank you in advance.

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.

3 replies

erik_jan
Contributor
Forum|alt.badge.img+22
  • Contributor
  • 2179 replies
  • March 19, 2018

Can you use the Center point of the polygons?

The CenterPointReplacer transformer replaces the polygon by a center point and then you can write those points to the point feature class.


jdh
Contributor
Forum|alt.badge.img+37
  • Contributor
  • 2002 replies
  • March 19, 2018

I would use a PointOnAreaOverlayer to get the attributes from the various polygon featureclasses.


erik_jan
Contributor
Forum|alt.badge.img+22
  • Contributor
  • 2179 replies
  • March 19, 2018
Could you clarify the issue:

 

Do you want points representing the polygons or do you want attributes from the polygons copied on the existing points?

 

Solutions for both options are already listed below.