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.
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.
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.
I would use a PointOnAreaOverlayer to get the attributes from the various polygon featureclasses.
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.