既存データを利用して店舗データを設定(Setup Store Using Existing Data) (Business Analyst)
サマリ
シェープファイル形式(ジオコーディング済み)の店舗をインポートし、以降の分析でそれらを店舗として識別します。
使用法
-
既存の店舗レイヤは、ポイント フィーチャクラスである必要があります。
構文
SetupStoreByExistingData_ba (InputFeatureLayer, NameField, StoreIDField, WayToSpecifyStoreIDField, CreateNewFeatureClass, OutputFeatureClass)
パラメータ | 説明 | データ タイプ |
InputFeatureLayer |
店舗を格納する既存のレイヤ。 | Feature Layer |
NameField |
店舗名を特定するために使用するフィールドを選択します。 | Field |
StoreIDField |
店舗 ID を特定するために使用する名前。 | String |
WayToSpecifyStoreIDField |
既存の店舗 ID フィールドを選択するか、新しいフィールドを作成します。
| Boolean |
CreateNewFeatureClass |
既存のレイヤに基づく新規フィーチャクラスを生成するか、既存のレイヤを使用します。
| Boolean |
OutputFeatureClass |
店舗ポイントの格納先となるフィーチャクラス。 | Feature Class |
コードのサンプル
SetupStoreByExistingData(既存のデータを使用した店舗の設定)の例(スタンドアロン スクリプト)
# Name: SetupStoreByExistingData.py
# Description: Creates a customer layer using an existing point layer.
# Author: Esri
# Import system modules
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 Setup Store Using Existing Data tool
StorePath = "C:/temp/sf_stores.shp"
StoreName = "NAME"
StoreID = "STORE_ID"
# Sets up a new store layer based on an existing layer
arcpy.SetupStoreByExistingData_ba(StorePath, StoreName, StoreID)
# 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