住所データから顧客レイヤを作成(Create a Customer Layer With Address data) (Business Analyst)
サマリ
新規顧客レイヤにジオコーディングする住所を入力できます。
使用法
-
このツールは、印刷された住所情報から数個の住所を一度に入力する場合に多く使用されます。
-
店舗レイヤを作成する際に使用する住所レコードのテーブルがすでに存在する場合は、[テーブル形式のデータを使用して顧客データを設定(Setup Customers Using Tabular Data)] ツールを使用します。
-
一致したレコードのみが、出力の顧客レイヤに格納されます。
構文
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