サマリ
シェープファイル形式 (ジオコーディング済み) の店舗をインポートし、以降の分析でそれらを店舗として識別します。
使用法
既存の店舗レイヤーは、ポイント フィーチャクラスである必要があります。
構文
SetupStoreByExistingData_ba (InputFeatureLayer, NameField, StoreIDField, WayToSpecifyStoreIDField, CreateNewFeatureClass, OutputFeatureClass, {UsePictureSymbol}, {ImagePath}, {PictureSymbolSize})
パラメータ | 説明 | データ タイプ |
InputFeatureLayer | 店舗を格納する既存のレイヤー。 | Feature Layer |
NameField | 店舗名を特定するために使用するフィールドを選択します。 | Field |
StoreIDField | 店舗 ID を特定するために使用する名前。 | String |
WayToSpecifyStoreIDField | 既存の店舗 ID フィールドを選択するか、新しいフィールドを作成します。
| Boolean |
CreateNewFeatureClass | 既存のレイヤーに基づく新規フィーチャクラスを生成するか、既存のレイヤーを使用します。
| Boolean |
OutputFeatureClass | 店舗ポイントの格納先となるフィーチャクラス。 | Feature Class |
UsePictureSymbol (オプション) | ポイント フィーチャクラスにカスタムの店舗シンボルを挿入します。
| Boolean |
ImagePath (オプション) | カスタムの店舗シンボルを格納しているファイルの場所。 | File |
PictureSymbolSize (オプション) | シンボルのサイズをポイント単位で設定します。 | Long |
コードのサンプル
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.3\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