限界値を設定したデータ値依存リング(Threshold Data Driven Ring) (Business Analyst)

ライセンス レベル:BasicStandardAdvanced

サマリ

店舗の周辺にリングを作成します。リングの半径を決定するには、リングが店舗レイヤに含まれている条件を満たすようになるまで、店舗位置からリングを拡大します。

[限界値を設定したデータ値依存リングを作成(Threshold Data-Driven Ring)] ツールの仕組みの詳細

限界値リング

使用法

構文

ThresholdDataDrivenRing_ba (InputFeatureLayer, IDField, All_Or_Single_Or_Selected, ThresholdFeatureLayer, ThresholdPopulationField, RadiusFieldName, OutputFeatureClass, {ByID_Or_ByName}, {Single_Site}, {Donut})
パラメータ説明データ タイプ
InputFeatureLayer

到達圏の商圏に対応する中心点を格納する入力フィーチャクラス。多くの場合、これは、Business Analyst の店舗レイヤになります。

Feature Layer
IDField

リング中心(店舗)レイヤの個別値フィールド。

Field
All_Or_Single_Or_Selected

入力フィーチャ レイヤ内にあるポイントに対応してリングを作成する方法を定義するオプション。

  • Allすべてのポイントに対してリングを作成します。
  • Single単一のポイントに対してリングを作成します。
  • SelectedArcMap で選択したすべてのポイントに対してリングを作成します。
String
ThresholdFeatureLayer

半径を決定する限界値データを格納する入力フィーチャクラス。

Feature Layer
ThresholdPopulationField

限界値レイヤ内に格納される限界値フィールド。

Field
RadiusFieldName

各店舗ポイントの限界値を格納したフィールド。

Field
OutputFeatureClass

リング フィーチャが含まれるフィーチャクラス。

Feature Class
ByID_Or_ByName
(オプション)

単一のポイントの選択に使用されるフィールド。

  • ID店舗 ID フィールドを使用して単一のポイントを選択します。
  • Name店舗名フィールドを使用して単一のポイントを選択します。
String
Single_Site
(オプション)

単一のポイントとして使用される店舗の ID または名前。

String
Donut
(オプション)

オーバーラップしない複数の同心リング、つまりドーナツ バンドを作成するかどうかを定義します。

  • TRUEドーナツ リングである出力ポリゴンを作成します。たとえば、3 つの半径(1、2、3 マイル)を入力する場合は、0 ~ 1、1 ~ 3、3 ~ 5 マイルのリングを使用して、3 つの出力バンドが作成されます。
  • FALSE同心リングを作成します。
Boolean

コードのサンプル

ThresholdDataDrivenRing(限界値を設定したデータ値依存リングを作成)の例(スタンドアロン スクリプト)
# 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)

環境

このツールはジオプロセシング環境を使用していません

関連トピック

ライセンス情報

ArcGIS for Desktop Basic: 次のものが必要 Business Analyst
ArcGIS for Desktop Standard: 次のものが必要 Business Analyst
ArcGIS for Desktop Advanced: 次のものが必要 Business Analyst
5/20/2014