サマリ
新規顧客レイヤーにジオコーディングする住所を入力できます。
使用法
このツールは、印刷された住所情報から数か所の住所を一度に入力する場合に便利なツールです。
店舗レイヤーを作成する際に使用する住所レコードのテーブルがすでに存在する場合は、[テーブル形式のデータを使用して顧客データを設定 (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.3\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_2014/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