Show Navigation | Hide Navigation
You are here:
Geoprocessing tool reference > Data Management toolbox > Feature Class toolset > Tools

Integrate (Data Management)

Release 9.2
Last modified November 29, 2010
E-mail This Topic Printable Version Give Us Feedback

Print all topics in : "Tools"


Related Topics

Compares features and makes any lines, points, or vertices within a certain distance range identical or coincident.


Illustration

Integrate Illustration

Usage tips

Command line syntax
An overview of the Command Line window
Integrate_management <Features {Ranks};Features {Ranks}...> {cluster_tolerance}

Parameter Explanation Data Type
<Features {Ranks};Features {Ranks}...>

The features to be integrated. When the distance between features is less than the cluster tolerance, the feature from the feature class or layer with the lower rank will snap to the feature from the feature class or layer with the higher rank (with 1 being a higher rank than 2).

(Feature Layer Long; Feature Layer Long;...)
{cluster_tolerance}

The distance that determines the range in which features are made coincident.

Linear unit
Data types for geoprocessing tool parameters


Command line example

Integrate_management "C:\temp\parcels.mdb\boundary 1;C:\temp\parcels.mdb\parcels 2" 0.2

Scripting syntax
About getting started with writing geoprocessing scripts
Integrate_management (in_features, cluster_tolerance)

Parameter Explanation Data Type
in_features (Required)

The features to be integrated. When the distance between features is less than the cluster tolerance, the feature from the feature class or layer with the lower rank will snap to the feature from the feature class or layer with the higher rank (with 1 being a higher rank than 2).

(Feature Layer Long; Feature Layer Long;...)
cluster_tolerance (Optional)

The distance that determines the range in which features are made coincident.

Linear unit

Data types for geoprocessing tool parameters


Script example

import arcgisscripting
gp = arcgisscripting.create()

gp.toolbox = "management"
gp.integrate("c:/city/admin.mdb/boundary 1;c:/city/parcels.shp 2", "0.2")

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