Select to view content in your preferred language

Join table to feature class to output feature class (with shape information)

861
1
09-26-2023 07:58 AM
Jay_Gregory
Frequent Contributor

Is there an easy way in Pro (i.e. without Python) if I have a feature class and a table, and I want to join the SHAPE field from the feature class to the table, joining on a common attribute field. 

The end result I'd like is to convert the table into a feature class, based on a shared column from a reference feature class. 

For example, lets say I have a table with a list of facility ids.  And then I have a feature class with facility ids and their location.  How do I get the location information from my feature class to my table?

Tags (3)
0 Kudos
1 Reply
DanPatterson
MVP Esteemed Contributor

Add Geometry Attributes to get the X, Y coordinates into the featureclass's table,

Add Geometry Attributes (Data Management)—ArcGIS Pro | Documentation

Join the featureclass over to the table

Join Field (Data Management)—ArcGIS Pro | Documentation

then make a featureclass out of it using

XY Table To Point (Data Management)—ArcGIS Pro | Documentation

and make sure you specify the coordinate system


... sort of retired...
0 Kudos