分布指向性分析(Directional Distribution (Standard Deviational Ellipse)) (空間統計)

サマリ

標準偏差楕円を作成して、中心傾向、分散、指向性傾向といった、地理フィーチャの空間特性をまとめます。

分布指向性分析(Directional Distribution (Standard Deviational Ellipse))の詳細

Directional Distribution (Standard Deviational Ellipse) graphic

使用法

構文

DirectionalDistribution_stats (Input_Feature_Class, Output_Ellipse_Feature_Class, Ellipse_Size, {Weight_Field}, {Case_Field})
パラメータ説明データ タイプ
Input_Feature_Class

標準偏差楕円の計算対象となるフィーチャの分布を示すフィーチャクラス。

Feature Layer
Output_Ellipse_Feature_Class

出力楕円フィーチャが格納されるポリゴン フィーチャクラス。

Feature Class
Ellipse_Size

標準偏差における出力楕円のサイズ。デフォルトの楕円サイズは 1 であり、標準偏差として選択できる有効な値は 1、2、または 3 です。

  • 1_STANDARD_DEVIATION
  • 2_STANDARD_DEVIATIONS
  • 3_STANDARD_DEVIATIONS
String
Weight_Field
(オプション)

相対的な重要度に応じて場所を加重するときに使用する数値フィールド。

Field
Case_Field
(オプション)

個々の分布指向性分析の計算式のためのグループ化に使用するフィールド。ケース フィールドには、整数、日付、または文字列型を使用できます。

Field

コードのサンプル

DirectionalDistribution(分布指向性分析)の例(Python ウィンドウ)

次の Python ウィンドウ スクリプトは、DirectionalDistribution(分布指向性分析)ツールの使用方法を示しています。

import arcpy
arcpy.env.workspace = r"C:\data"
arcpy.DirectionalDistribution_stats("AutoTheft.shp", "auto_theft_SE.shp", "1_STANDARD_DEVIATION", "#", "#")
DirectionalDistribution(分布指向性分析)の例(スタンドアロン Python スクリプト)

次のスタンドアロン Python ウィンドウのスクリプトは、DirectionalDistribution(分布指向性分析)ツールの使用方法を示しています。

# Measure the geographic distribution of auto thefts
 
# Import system modules
import arcpy
 
# Local variables...
workspace = "C:/data"
locations = "AutoTheft.shp"
links = "AutoTheft_links.shp"
standardDistance = "auto_theft_SD.shp"
stardardEllipse = "auto_theft_SE.shp"
linearDirectMean = "auto_theft_LDM.shp"
 
try:
    # Set the workspace (to avoid having to type in the full path to the data every time)
    arcpy.env.workspace = workspace
 
    # Process: Standard Distance of auto theft locations...
    arcpy.StandardDistance_stats(locations, standardDistance, "1_STANDARD_DEVIATION", "#", "#")
 
    # Process: Directional Distribution (Standard Deviational Ellipse) of auto theft locations...
    arcpy.DirectionalDistribution_stats(locations, standardEllipse, "1_STANDARD_DEVIATION", "#", "#")
 
    # Process: Linear Directional Mean of auto thefts...
    arcpy.DirectionalMean_stats(links, linearDirectMean, "DIRECTION", "#")
 
except:
    # If an error occurred while running a tool, print the messages 
    print arcpy.GetMessages()

環境

出力データの座標系

フィーチャ ジオメトリは、分析の前に出力データの座標系に投影されます。すべての数学的計算は、出力データの座標系の空間参照に基づきます。

関連項目

ライセンス情報

ArcView: はい
ArcEditor: はい
ArcInfo: はい

7/10/2012