住所データから顧客レイヤを作成(Create a Customer Layer With Address data) (Business Analyst)

ライセンス レベル:BasicStandardAdvanced

サマリ

新規顧客レイヤにジオコーディングする住所を入力できます。

使用法

構文

CreateCustomerWithAddressData_ba (Locator, AddressesCollection, OutputFeatureClass)
パラメータ説明データ タイプ
Locator

住所ロケータ。

Address Locator
AddressesCollection

ジオコーディングされ、新規店舗レイヤに格納される住所。

String
OutputFeatureClass

顧客フィーチャが含まれるフィーチャクラス。

Feature Class

コードのサンプル

CreateCustomerWithAddressData(住所データから顧客レイヤを作成)の例(スタンドアロン スクリプト)
# Name: CreateCustomerWithAddressData.py
# Description: Creates a geocoded customer layer based on a single address in Redlands, CA.
# 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 a Customer Layer with Address Data tool
  OutFC= "C:/temp/Redlands_customer.shp"
  Locator = "C:/ArcGIS/Business Analyst/US_2013/Data/Geocoding Data/USA Geocoding Service.loc"
  AddressCol = "Addr:380 New York St|City:Redlands|State:CA"
 
# Create output file for Create customer layers with address data tool
  arcpy.CreateCustomerWithAddressData_ba(Locator, AddressCol, OutFC)
 
# Release extension license 
  arcpy.CheckInExtension("Business") 
 
except:
  print arcpy.GetMessages(2)

環境

このツールはジオプロセシング環境を使用していません

関連トピック

ライセンス情報

ArcGIS for Desktop Basic: 次のものが必要 Business Analyst
ArcGIS for Desktop Standard: 次のものが必要 Business Analyst
ArcGIS for Desktop Advanced: 次のものが必要 Business Analyst
5/20/2014