Create An Empty Customer Layer (Business Analyst)

Nivel de licencia:BasicStandardAdvanced

Resumen

Creates a new empty point feature class (customer layer). You can define fields to be created in the new layer.

Uso

Sintaxis

CreateEmptyCustomerLayer_ba (OutputFeatureClass, {FldsCollection}, {NameField}, {LinkField})
ParámetroExplicaciónTipo de datos
OutputFeatureClass

The feature class that will contain the customer features.

Feature Class
FldsCollection
(Opcional)

Fields to add to the output feature class.

String
NameField
(Opcional)

The field that will identify the customer name.

String
LinkField
(Opcional)

Unique ID linking the customer file with the store file.

String

Ejemplo de código

CreateEmptyCustomerLayer Example (Stand-alone Script)
# Name: CreateEmptyCustomerLayer.py
# Description: Creates a new empty customer layer.
# Author: Esri

# Import system modules
import arcview
import arcpy

arcpy.ImportToolbox("C:\Program Files (x86)\ArcGIS\Desktop10.2\Business Analyst\ArcToolbox\Toolboxes\Business Analyst Tools.tbx")
 
try:
# Acquire extension license 
  arcpy.CheckOutExtension("Business")
 
# Defines the parameters for the Create an Empty Customer Layer tool
  OutPath = "C:/temp/New_Customers.shp"
  StoreId = "ID"
  Name= "Address"
  FldCol = "Name:ID|Alias:ID|Type:esriFieldTypeSmallInteger|Precision:1;Name:Address|Alias:Address|Type:esriFieldTypeString|Precision:40"
 
# Creates a new feature class (Customer Layer) with empty attribute fields
  arcpy.CreateEmptyCustomerLayer_ba(OutPath, FldCol, Name, StoreId)
 
# Release extension license 
  arcpy.CheckInExtension("Business") 
 
except:
  print arcpy.GetMessages(2)

Entornos

Esta herramienta no utiliza ningún entorno de geoprocesamiento.

Temas relacionados

Información sobre licencias

ArcGIS for Desktop Basic: Requiere Business Analyst
ArcGIS for Desktop Standard: Requiere Business Analyst
ArcGIS for Desktop Advanced: Requiere Business Analyst
4/26/2014