How to Preserve Point Coordinates

361
2
Jump to solution
01-30-2019 01:33 PM
MitchellWade
New Contributor III

Where are point coordinates stored, and how do you add them to the point attribute table so that they can be processed and then added back to a map?

0 Kudos
1 Solution

Accepted Solutions
Scott_Harris
Esri Regular Contributor

Hi Mitchell,

You can use the Add Geometry Attributes geoprocessing tool:

Add Geometry Attributes—Data Management toolbox | ArcGIS Desktop 

These are the attributes you probably want:

POINT_X: The x-coordinate of the point.

POINT_Y: The y-coordinate of the point.

POINT_Z: The z-coordinate of the point. This field is only added if the input features are z-enabled.

POINT_M: The m-coordinate of the point. This field is only added if the input features are m-enabled.

-Scott

View solution in original post

2 Replies
Scott_Harris
Esri Regular Contributor

Hi Mitchell,

You can use the Add Geometry Attributes geoprocessing tool:

Add Geometry Attributes—Data Management toolbox | ArcGIS Desktop 

These are the attributes you probably want:

POINT_X: The x-coordinate of the point.

POINT_Y: The y-coordinate of the point.

POINT_Z: The z-coordinate of the point. This field is only added if the input features are z-enabled.

POINT_M: The m-coordinate of the point. This field is only added if the input features are m-enabled.

-Scott

MitchellWade
New Contributor III

Thank you! I think that will do it!

0 Kudos