Business Analyst ライセンスで利用できます。
概要
分析ツールと商圏ツールで顧客ファイルとして使用するために、既存のフィーチャクラスに基づいて出力フィーチャクラスを定義します。
使用法
シェープファイルのようなフィーチャにすでに保存されている顧客をインポートします。
既存の顧客レイヤーは、ポイント フィーチャクラスである必要があります。
顧客はすでにジオコーディングされている必要があります。
構文
arcpy.ba.SetupCustomersByExistingData(InputFeatureLayer, NameField, LinkField, {CreateNewFeatureClass}, {OutputFeatureClass})
パラメーター | 説明 | データ タイプ |
InputFeatureLayer | 入力フィーチャ レイヤー。 | Feature Layer |
NameField | 入力フィーチャ レイヤーの一意の ID (一般的には顧客名)。 | Field |
LinkField | 顧客ファイルと店舗ファイルを関連付ける一意の ID | Field |
CreateNewFeatureClass (オプション) | 既存のレイヤーに基づく新規フィーチャクラスを生成するか、既存のレイヤーを使用します。
| Boolean |
OutputFeatureClass (オプション) | 顧客フィーチャが含まれるフィーチャクラス。 | Feature Class |
コードのサンプル
SetupCustomersByExistingData (既存データを利用して顧客データを設定) の例 (スタンドアロン スクリプト)
# Name: SetupCustomersByExistingData.py
# Description: Creates a customer layer using an existing point layer.
# Author: Esri
# Import system modules
import arcview
import arcpy
arcpy.ImportToolbox(r"C:\Program Files (x86)\ArcGIS\Desktop10.8\Business Analyst\ArcToolbox\Toolboxes\Business Analyst Tools.tbx")
try:
# Acquire extension license
arcpy.CheckOutExtension("Business")
# Sets up a new customer layer based on an existing layer
CustPath = "C:/temp/sf_cust.shp"
CustId = "CUST_ID"
StoreId = "STORE_ID"
# Sets up a new customer layer based on an existing layer
arcpy.SetupCustomersByExistingData_ba(CustPath,
CustId,
StoreId)
# Release extension license
arcpy.CheckInExtension("Business")
環境
このツールは、ジオプロセシング環境を使用しません。
ライセンス情報
- Basic: 次のものが必要 Business Analyst
- Standard: 次のものが必要 Business Analyst
- Advanced: 次のものが必要 Business Analyst