Question

Creating a point featureclass

  • 19 March 2018
  • 3 replies
  • 6 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.


3 replies

Userlevel 2
Badge +12

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.

Badge +22

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

Userlevel 2
Badge +12
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.

 

 

Reply