Show Navigation | Hide Navigation
You are here:
Geoprocessing tool reference > Coverage toolbox > Analysis toolset > Proximity toolset > Tools

Point Distance (Coverage) (ArcInfo only)

Release 9.3
Last modified December 29, 2008
E-mail This Topic Printable Version Give Us Feedback

Print all topics in : "Tools"


Related Topics

NOTE: This tool only works with an ArcInfo license and will only be available in ArcToolbox if you have installed ArcInfo Workstation.


Computes the point-to-point distance between each point in a coverage to all points in the same or another coverage within a specified search radius.

The search radius is the maximum distance in coverage units a feature can be from the current point for consideration as the closest feature. The default is the width or height of the near coverage BND divided by 100, whichever is larger.

The definition of the distance item in the output INFO file will be the same as the highest precision of the two point coverage inputs.

Learn more about how Point Distance works.


Illustration


Point Distance illustration

Usage tips

Command line syntax
An overview of the Command Line window
PointDistance_arc <from_cover> <to_cover> <out_info_table> {search_radius}

Parameter Explanation Data Type
<from_cover>

The point coverage for which distances to another coverage's points are to be computed.

Coverage
<to_cover>

The point coverage from which point distances are to be measured. Distances between all points in the same coverage can be calculated by specifying the same coverage name for both <from_cover> and <to_cover> arguments.

Coverage
<out_info_table>

The INFO data table created by Point Distance, which holds the distance measurements. The number of records created in <output Info table:> depends on the search radius used, but it can be as large as the number of points in the <from cover> times the number of points in the <to cover:>.

ArcInfo Table
{search_radius}

The maximum distance in coverage units a feature can be from the current point for consideration as the closest feature. The default is the width or height of the near coverage BND divided by 100, whichever is larger.

Double
Data types for geoprocessing tool parameters


Command line example

PointDistance_arc wells trees distance 1000

Scripting syntax
About getting started with writing geoprocessing scripts
PointDistance_arc (from_cover, to_cover, out_info_table, search_radius)

Parameter Explanation Data Type
from_cover (Required)

The point coverage for which distances to another coverage's points are to be computed.

Coverage
to_cover (Required)

The point coverage from which point distances are to be measured. Distances between all points in the same coverage can be calculated by specifying the same coverage name for both <from_cover> and <to_cover> arguments.

Coverage
out_info_table (Required)

The INFO data table created by Point Distance, which holds the distance measurements. The number of records created in <output Info table:> depends on the search radius used, but it can be as large as the number of points in the <from cover> times the number of points in the <to cover:>.

ArcInfo Table
search_radius (Optional)

The maximum distance in coverage units a feature can be from the current point for consideration as the closest feature. The default is the width or height of the near coverage BND divided by 100, whichever is larger.

Double

Data types for geoprocessing tool parameters


Script example

import arcgisscripting
gp = arcgisscripting.create()

gp.workspace = "c:\\workspace"
gp.toolbox = "arc"
gp.pointdistance("wells", "trees", "distance", "1000")

Please visit the Feedback page to comment or give suggestions on ArcGIS Desktop Help.
Copyright © Environmental Systems Research Institute, Inc.