[GIS] Measuring distance between two points

arcgis-desktopdistanceproximity

I have two shapefiles and I would like to know the distance between each point on File1 and each corresponding point on File2 (one to one relationship).

I have been using the Ruler and manually calculating this, but is there a more efficient way?

I am able to produce one table with the lat/long from Table 1 and the lat/long from Table 2. However, I do not know how to populate a distance column with an equation (and I do not know Python).

Best Answer

As commented under the OP, my suggestion is to use the Point Distance geoprocessing tool, if you have Advanced licensing.

  1. Run Point Distance tool to calculate the distance between all possible combinations of points
  2. Start editing
  3. Select by Attributes where ID1 <> ID2
  4. Delete the selected records
Related Question