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.
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 to Yes 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.
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.
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 to Yes will be considered disconnected points.
IGNORE_FIXED—Fixed points will not be considered disconnected points. This is the default.
NO_IGNORE_FIXED—Fixed 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_CONSTRAINED—Constrained points will not be considered disconnected points. This is the default.
NO_IGNORE_CONSTRAINED—Constrained 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_EDGE—Points that lie on polygon edges and on parcel lines will be considered disconnected points.
NO_CONSIDER_EDGE—Points 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.