Business Analyst ライセンスで利用できます。
概要
シェープファイル形式 (ジオコーディング済み) の店舗をインポートし、以降の分析でそれらを店舗として識別します。
使用法
既存の店舗レイヤーは、ポイント フィーチャクラスである必要があります。
構文
arcpy.ba.SetupStoreByExistingData(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 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")
# Defines the parameters for the Setup Store Using Existing Data tool
InputFeatureLayer = "C:/temp/sf_stores.shp"
NameField = "NAME"
StoreIDField = "STORE_ID"
# Sets up a new store layer based on an existing layer
arcpy.SetupStoreByExistingData_ba(InputFeatureLayer, NameField, StoreIDField)
# Release extension license
arcpy.CheckInExtension("Business")
環境
このツールは、ジオプロセシング環境を使用しません。
ライセンス情報
- Basic: 次のものが必要 Business Analyst
- Standard: 次のものが必要 Business Analyst
- Advanced: 次のものが必要 Business Analyst