Add Parcel Type (Parcel)

Summary

Adds a parcel type to a parcel fabric. A parcel type is defined by a separate polygon and line feature class. Parcel type feature classes are controlled by the parcel fabric dataset.

Parcels are stored in the parcel fabric as parcel types. Examples of parcel types are ownership parcels, administrative parcels, and subdivision parcels.

Learn more about parcel types

Usage

  • In a map, parcel types are added as group layers. The group layer contains the parcel polygon layer, the parcel line layer, and historic sublayers.

  • On an enterprise geodatabase, the input parcel fabric must be from a database connection established as the database parcel fabric owner.

  • The connected ArcGIS Enterprise portal account must be the parcel fabric owner.

  • The parcel fabric topology must be disabled.

  • On an enterprise geodatabase, this tool should be executed when connected to the default version.

Syntax

AddParcelType(in_parcel_fabric, name, {administrative_polygon})
ParameterExplanationData Type
in_parcel_fabric

The parcel fabric to which the parcel type will be added. The parcel fabric can be from a file or and enterprise geodatabase.

Parcel Layer
name

The name of the parcel type. The name will be assigned to the output polygon and line feature classes.

String
administrative_polygon
(Optional)

Administrative boundaries are used for very large parcels such as country parcels or state parcels. The parcel type polygon feature class will not participate in the parcel fabric topology.

  • ADMINISTRATIVE_POLYGONThe parcel type is used to store administrative boundaries. The parcel type polygon feature class will not participate in the parcel fabric topology.
  • TOPOLOGY_POLYGONThe parcel type will not store administrative boundaries. The parcel type polygon feature class will participate in the parcel fabric topology. This is the default.
Boolean

Derived Output

NameExplanationData Type
updated_parcel_fabric

The updated parcel fabric.

Parcel Fabric
out_polygon_fc

The parcel type polygon feature class.

Feature Class
out_line_fc

The parcel type line feature class.

Feature Class

Code sample

AddParcelType example (Python window)

The following Python window script demonstrates how to add a parcel type to a parcel fabric in immediate mode.

import arcpy
arcpy.parcel.AddParcelType("c:/Data/County.gdb/Parcels/CountyFabric", "Ownership")

Environments

This tool does not use any geoprocessing environments.

Licensing information

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

Related topics