Append Parcels (Parcel)

Summary

Appends parcels from an input parcel fabric to a target parcel fabric. If the input parcel fabric is a parcel fabric layer with selected polygons, the corresponding parcel features will be appended.

Usage

  • Parcel types in the input parcel fabric must match the parcel types in the target parcel fabric.

  • The schema of the input parcel fabric must match the schema of the target parcel fabric. User-added attribute fields should exist on the same parcel feature classes for both the input and target parcel fabric.

  • Duplicate parcel fabric records will not be created. Record geometry in the target parcel fabric will be updated with the geometry of matching records from the input parcel fabric. Record attributes in the target parcel fabric will be updated with record attributes from the input parcel fabric.

  • If the input parcel fabric layer has selected polygons, all corresponding parcel features and parcel records will be appended. This includes any connection lines that are connected to parcel points.

  • If the input parcel fabric has missing parcel lines or points, the parcel polygons will still be appended. Parcels can be built after data has been appended.

  • Parcel lines and points cannot be appended as stand-alone features using this tool. Use the Append tool to append parcel line or point features.

Parameters

LabelExplanationData Type
Input Parcel Fabric

The input parcels that will be appended to the target parcel fabric. The input parcel fabric can be from a file, enterprise, or mobile geodatabase, or a feature service.

Parcel Layer
Target Parcel Fabric

The target parcel fabric to which the parcels will be appended. The target parcel fabric can be from a file, enterprise, or mobile geodatabase.

Parcel Layer

Derived Output

LabelExplanationData Type
Updated Parcel Fabric

The updated parcel fabric.

Parcel Layer

arcpy.parcel.AppendParcels(in_parcel_fabric, target_parcel_fabric)
NameExplanationData Type
in_parcel_fabric

The input parcels that will be appended to the target parcel fabric. The input parcel fabric can be from a file, enterprise, or mobile geodatabase, or a feature service.

Parcel Layer
target_parcel_fabric

The target parcel fabric to which the parcels will be appended. The target parcel fabric can be from a file, enterprise, or mobile geodatabase.

Parcel Layer

Derived Output

NameExplanationData Type
updated_parcel_fabric

The updated parcel fabric.

Parcel Layer

Code sample

AppendParcels example (Python window)

The following Python window script demonstrates how to use the AppendParcels function to append a parcel fabric layer with selected parcels to a target parcel fabric in immediate mode.

import arcpy
arcpy.parcel.AppendParcels('Parcels', "C:/Parcels/Database.gdb/County/TargetFabric")

Environments

This tool does not use any geoprocessing environments.

Licensing information

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

Related topics