Export Parcel Record Features (Parcel)

Summary

Exports the parcel features associated with a selected parcel record to individual feature classes. The tool exports parcel features that were created by and retired by the selected record.

The exported parcel features can be added to maps to create layouts depicting parcel lineage in the selected record. For example, a layout can display a before and an after view showing historic parcels retired by the record and new parcels created by the record.

Learn more about creating a layout

Usage

  • The tool creates individual feature classes for each parcel fabric feature class. The following feature classes will be created in the target feature dataset:

    • A polygon and a line feature class for each parcel type in the parcel fabric
    • A line feature class for connection lines
    • A point feature class for parcel fabric points
    • A polygon feature class for parcel fabric records

  • Feature classes for each parcel fabric feature class are still created even if they remain empty after the tool has been run. The tool can be run repeatedly using different selected records. Data is overwritten in the feature classes each time the tool is run. If the feature class already exists, it is not re-created by the tool.

  • A domain named ExportStatus is created for the geodatabase of the input parcel record. The domain has three values: Created By Record, Retired By Record and Created and Retired By Record. The domain is used by the Exported Status field on the individual feature classes.

  • A field named Exported Status is added to each feature class created by the tool. The field uses the ExportStatus domain. The tool sets the field value based on whether the feature was created by the selected record, retired by the selected record, or both.

  • You can use the Exported Status field on the exported feature classes in a definition query to distinguish parcels that were created by the selected record from parcels that were retired by the selected record.

Parameters

LabelExplanationData Type
Input Record Feature

The parcel fabric records layer that contains the selected record polygon. Only one record polygon can be selected.

Feature Layer
Target Feature Dataset

The feature dataset where the exported parcel fabric feature classes will reside. If you're using an existing feature class, the features will be overwritten with the exported features.

Feature Dataset

Derived Output

LabelExplanationData Type
Output Record Feature Class

The exported parcel fabric records feature class.

Feature Class

arcpy.parcel.ExportParcelRecordFeatures(in_record_polygon_feature, target_feature_dataset)
NameExplanationData Type
in_record_polygon_feature

The parcel fabric records layer that contains the selected record polygon. Only one record polygon can be selected.

Feature Layer
target_feature_dataset

The feature dataset where the exported parcel fabric feature classes will reside. If you're using an existing feature class, the features will be overwritten with the exported features.

Feature Dataset

Derived Output

NameExplanationData Type
out_record_feature_class

The exported parcel fabric records feature class.

Feature Class

Code sample

ExportParcelRecordFeatures example (Python window)

The following Python window script demonstrates how to use the ExportParcelRecordFeatures function to export the features associated with a parcel fabric record in immediate mode.

import arcpy
arcpy.parcel.ExportParcelRecordFeatures('CountyFabric\\Records', 'C:/Data/Database.gdb/BeforeAndAfter')

Environments

This tool does not use any geoprocessing environments.

Licensing information

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

Related topics