限界値を設定したデータ値依存リング(Threshold Data Driven Ring) (Business Analyst)
サマリ
店舗の周辺にリングを作成します。リングの半径を決定するには、リングが店舗レイヤに含まれている条件を満たすようになるまで、店舗位置からリングを拡大します。
[限界値を設定したデータ値依存リングを作成(Threshold Data-Driven Ring)] ツールの仕組みの詳細
図
使用法
-
出力フィーチャクラスの空間参照は、店舗レイヤと同じになります。
-
店舗レイヤの入力フィーチャクラスは、ポイント フィーチャである必要があります。
-
多くの場合、店舗レイヤの入力フィーチャは、Business Analyst の店舗レイヤになります。
-
すべての店舗を選択すると、リング中心(店舗)の入力フィーチャクラス内に、各ポイント フィーチャに対応するリングが作成されます。
-
ArcMap では、商圏は、有効な分析範囲(解析範囲)に含まれるフィーチャに対してのみ作成されます。
-
限界値は、数値データのみに基づいて作成できます。
-
限界値レイヤはポイント フィーチャクラスまたはポリゴン フィーチャクラスであること、および Business Analyst データセット(BDS)として設定することが必要です。多くの場合、町丁・字等または基本単位区レイヤを選択する必要があります。
構文
パラメータ | 説明 | データ タイプ |
InputFeatureLayer |
到達圏の商圏に対応する中心点を格納する入力フィーチャクラス。多くの場合、これは、Business Analyst の店舗レイヤになります。 | Feature Layer |
IDField |
リング中心(店舗)レイヤの個別値フィールド。 | Field |
All_Or_Single_Or_Selected |
入力フィーチャ レイヤ内にあるポイントに対応してリングを作成する方法を定義するオプション。
| String |
ThresholdFeatureLayer |
半径を決定する限界値データを格納する入力フィーチャクラス。 | Feature Layer |
ThresholdPopulationField |
限界値レイヤ内に格納される限界値フィールド。 | Field |
RadiusFieldName |
各店舗ポイントの限界値を格納したフィールド。 | Field |
OutputFeatureClass |
リング フィーチャが含まれるフィーチャクラス。 | Feature Class |
ByID_Or_ByName (オプション) |
単一のポイントの選択に使用されるフィールド。
| String |
Single_Site (オプション) |
単一のポイントとして使用される店舗の ID または名前。 | String |
Donut (オプション) |
オーバーラップしない複数の同心リング、つまりドーナツ バンドを作成するかどうかを定義します。
| Boolean |
コードのサンプル
# Name: ThresholdDataDrivenRing.py
# Description: Creates thresholds rings around stores.
# Author: Esri
# Import system modules
import arcview
import arcpy
arcpy.AddToolbox("C:\Program Files (x86)\ArcGIS\Desktop10.2\Business Analyst\ArcToolbox\Toolboxes\Business Analyst Tools.tbx")
try:
# Acquire extension license
arcpy.CheckOutExtension("Business")
# Define input and output parameters for the Threshold Data Driven Ring tool
StorePath = "C:/temp/sf_stores.shp"
IdFld = "STORE_ID"
ThresholdLayer = "C:/ArcGIS/Business Analyst/US_2013/Data/BDS/esri_bg.bds"
FieldThreshold = "TOTPOP_CY"
OutPath = "C:/temp/ThresholdDataRings.shp"
# Create Threshold Data Driven Ring areas
arcpy.ThresholdDataDrivenRing_ba(StorePath, IdFld, "ALL", ThresholdLayer, FieldThreshold, "SALES", OutPath)
# Release extension license
arcpy.CheckInExtension("Business")
except:
print arcpy.GetMessages(2)