Find Disconnected Parcel Points (Parcel)

Summary

Finds parcel points that are not connected to any parcel lines or connection lines. Points that are only connected to historic parcel lines are considered historic points and are not disconnected points.

Disconnected points are symbolized using a point feature class that is added to the map when the tool is run.

Usage

  • The .lyrx file used to symbolize the disconnected point features is located at \arcgis\pro\Resources\ArcToolBox\Templates\Layers\ParcelFabricFindDisconnectedParcelPoints.lyrx.

  • Disconnected parcel points can come from imported parcel data, imported CAD data, and from copying data. Delete disconnected parcel points, as they can result in incorrect alignments and snapping.

  • The number of disconnected points that are found will be displayed under Messages in the tool details.

Parameters

LabelExplanationData Type
Input Parcel Point Features

The input parcel fabric point feature class that will be searched.

Feature Layer
Output Feature Class

The output feature class that will contain the disconnected points. The disconnected points will be symbolized with large point features that are visible on the map.

Feature Class
Ignore Fixed Points
(Optional)

Specifies whether points that have their Fixed Shape field set toYes will be considered disconnected points.

  • Checked—Fixed points will not be considered disconnected points. This is the default.
  • Unchecked—Fixed points will be considered disconnected points if they are not connected to any parcel lines or connection lines.
Boolean
Ignore Constrained Points
(Optional)

Specifies whether points that have their Adjustment Constraint field set to XYZ constrained will be considered disconnected points.

  • Checked—Constrained points will not be considered disconnected points. This is the default.
  • Unchecked—Constrained points will be considered disconnected points if they are not connected to any parcel lines or connection lines.
Boolean
Consider Points Along Parcel Edges As Disconnected
(Optional)

Specifies whether points that lie on polygon edges and on parcel lines will be considered disconnected points. These points do not connect to any other parcel line and do not split the polygon edge into two parts or split the line into two lines.

Disconnected points on parcel edges

  • Checked—Points that lie on polygon edges and on parcel lines will be considered disconnected points.
  • Unchecked—Points that lie on polygon edges and on parcel lines will not be considered disconnected points. This is the default.
Boolean

arcpy.parcel.FindDisconnectedParcelPoints(in_parcel_points, out_feature_class, {ignore_fixed}, {ignore_constrained}, {consider_edge})
NameExplanationData Type
in_parcel_points

The input parcel fabric point feature class that will be searched.

Feature Layer
out_feature_class

The output feature class that will contain the disconnected points. The disconnected points will be symbolized with large point features that are visible on the map.

Feature Class
ignore_fixed
(Optional)

Specifies whether points that have their Fixed Shape field set toYes will be considered disconnected points.

  • IGNORE_FIXEDFixed points will not be considered disconnected points. This is the default.
  • NO_IGNORE_FIXEDFixed points will be considered disconnected points if they are not connected to any parcel lines or connection lines.
Boolean
ignore_constrained
(Optional)

Specifies whether points that have their Adjustment Constraint field set to XYZ constrained will be considered disconnected points.

  • IGNORE_CONSTRAINEDConstrained points will not be considered disconnected points. This is the default.
  • NO_IGNORE_CONSTRAINEDConstrained points will be considered disconnected points if they are not connected to any parcel lines or connection lines.
Boolean
consider_edge
(Optional)

Specifies whether points that lie on polygon edges and on parcel lines will be considered disconnected points. These points do not connect to any other parcel line and do not split the polygon edge into two parts or split the line into two lines.

  • CONSIDER_EDGEPoints that lie on polygon edges and on parcel lines will be considered disconnected points.
  • NO_CONSIDER_EDGEPoints that lie on polygon edges and on parcel lines will not be considered disconnected points. This is the default.
Boolean

Code sample

FindDisconnectedParcelPoints example (Python window)

The following Python window script demonstrates how to use the FindDisconnectedParcelPoints function to find points that are not connected to any parcel lines.

import arcpy
arcpy.parcel.FindDisconnectedParcelPoints('Points', 'Points_disconnected', 
                                          'IGNORE_FIXED', 'IGNORE_CONSTRAINED',
                                         'CONSIDER_EDGE')

Environments

This tool does not use any geoprocessing environments.

Licensing information

  • Basic: No
  • Standard: Yes
  • Advanced: Yes

Related topics