Label | Explanation | Data 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.
| Boolean |
Ignore Constrained Points
(Optional) | Specifies whether points that have their Adjustment Constraint field set to XYZ constrained will be considered disconnected points.
| 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.
| Boolean |
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
arcpy.parcel.FindDisconnectedParcelPoints(in_parcel_points, out_feature_class, {ignore_fixed}, {ignore_constrained}, {consider_edge})
Name | Explanation | Data 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.
| Boolean |
ignore_constrained (Optional) | Specifies whether points that have their Adjustment Constraint field set to XYZ constrained will be considered disconnected points.
| 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.
| Boolean |
Code sample
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
Licensing information
- Basic: No
- Standard: Yes
- Advanced: Yes