ArcGIS for Desktop

  • Documentation
  • Pricing
  • Support

  • My Profile
  • Help
  • Sign Out
ArcGIS for Desktop

ArcGIS Online

The mapping platform for your organization

ArcGIS for Desktop

A complete professional GIS

ArcGIS for Server

GIS in your enterprise

ArcGIS for Developers

Tools to build location-aware apps

ArcGIS Solutions

Free template maps and apps for your industry

ArcGIS Marketplace

Get apps and data for your organization

  • Documentation
  • Pricing
  • Support
Esri
  • Sign In
user
  • My Profile
  • Sign Out

Help

  • Home
  • Get Started
  • Map
  • Analyze
  • Manage Data
  • Tools
  • More...

Copy Parcel Fabric

Available with Standard or Advanced license.

  • Summary
  • Usage
  • Syntax
  • Code Sample
  • Environments
  • Licensing Information

Summary

Copies parcels from the input parcel fabric dataset or layer to a new parcel fabric.

Usage

  • If Input Parcels is a parcel fabric layer in the map and there is a selection present on the parcels sublayer, only the selected parcels are copied to the output parcel fabric.

  • To overwrite an existing parcel fabric instead of creating a new parcel fabric, choose the Overwrite the outputs of geoprocessing operations on the Geoprocessing Options dialog box. To open the Geoprocessing Options dialog box, click the Geoprocessing menu in ArcMap and click Geoprocessing Options.

    In Python, set arcpy.env.overwriteOutput = True.

Syntax

CopyParcelFabric_fabric (in_parcels, output_parcels, {config_keyword})
ParameterExplanationData Type
in_parcels

The parcels to be copied to another parcel fabric.

Parcel Fabric Layer
output_parcels

The new parcel fabric to which the parcels will be copied. If the parcel fabric exists and you have chosen to overwrite the outputs of geoprocessing operations by setting arcpy.env.overwriteOutput to True, the existing parcel fabric will be overwritten with a new parcel fabric containing the copied parcels.

Parcel Fabric
config_keyword
(Optional)

Specifies the storage parameters (configuration) for parcel fabrics in file and ArcSDE geodatabases. Personal geodatabases do not use configuration keywords.

ArcSDE configuration keywords for ArcSDE Enterprise Edition are set up by your database administrator.

String

Code Sample

CopyParcelFabric example 1 (Python window)

The following Python window script demonstrates how to use the CopyParcelFabric tool in immediate mode.

import arcpy
arcpy.env.workspace = "C:/data/OaklandCounty.gdb"
arcpy.CopyParcelFabric_fabric ("/Parceldata/ParcelFabric", "/SubdivisionData/SubdivisionFabric",)
CopyParcelFabric example 2 (stand-alone Python script)

The following Python script demonstrates how to use the CopyParcelFabric tool in a stand-alone script.

#Name: Copy Parcels.py 
# Description: Copies a smaller subset of a parcel fabric to a new parcel fabric.

# Import system modules
import arcpy
from arcpy import env

# Set workspace
env.workspace = "E:\City\LocalGovernment.gdb\ParcelEditing"

# Set local variables
in_data =  "Parcel_FabricSub"
out_data = " E:\County\LocalGovernment.gdb\ParcelEditing\Parcel_Fabric"


# Execute Copy Parcels
arcpy.CopyParcelFabric_fabric(in_data, out_data,)

Environments

This tool does not use any geoprocessing environments

Licensing Information

  • ArcGIS for Desktop Basic: No
  • ArcGIS for Desktop Standard: Yes
  • ArcGIS for Desktop Advanced: Yes

Related Topics

  • Copy
  • What are configuration keywords?
  • An overview of the Parcel Fabric toolbox
Feedback on this topic?

ArcGIS for Desktop

  • Home
  • Documentation
  • Pricing
  • Support

ArcGIS Platform

  • ArcGIS Online
  • ArcGIS for Desktop
  • ArcGIS for Server
  • ArcGIS for Developers
  • ArcGIS Solutions
  • ArcGIS Marketplace

About Esri

  • About Us
  • Careers
  • Insiders Blog
  • User Conference
  • Developer Summit
Esri
© Copyright 2016 Environmental Systems Research Institute, Inc. | Privacy | Legal