Select Parcel Features (Parcel)

Summary

Selects the related points and lines of the input parcel polygons.

Usage

  • If the input has a selection, only the related points and lines of the selected polygons will be selected and the selected polygons will remain selected after the tool has run.

Parameters

LabelExplanationData Type
Input Parcel Features

The input parcel polygon layer.

Feature Layer

Derived Output

LabelExplanationData Type
Output Lines Feature Class

The selected parcel lines.

Feature Layer
Output Points Feature Class

The selected parcel points.

Feature Layer

arcpy.parcel.SelectParcelFeatures(in_parcel_polygon_features)
NameExplanationData Type
in_parcel_polygon_features

The input parcel polygon layer.

Feature Layer

Derived Output

NameExplanationData Type
out_lines_feature_layer

The selected parcel lines.

Feature Layer
out_points_feature_layer

The selected parcel points.

Feature Layer

Code sample

SelectParcelFeatures example (Python window)

The following Python window script demonstrates how to use the SelectParcelFeatures function to select the related parcel lines and points of the input parcel polygons.

import arcpy
arcpy.parcel.SelectParcelFeatures("C:/Data/Database.gdb/Parcels/CountyFabric/Lot")

Environments

This tool does not use any geoprocessing environments.

Licensing information

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

Related topics