Z スコア レンダリング処理(ZScore Rendering) (空間統計)

サマリ

コールド(青色)/ホット(赤色)カラー レンダリング スキーマを Z スコアのフィールドに適用します。

Z-score Rendering illustration

使用法

構文

ZRenderer_stats (input_feature_class, field_to_render, output_layer_file)
パラメータ説明データ タイプ
input_feature_class

標準化された Z スコアのフィールドが含まれているフィーチャクラス。

Feature Layer
field_to_render

Z スコアが含まれているフィールドの名前。

Field
output_layer_file

レンダリング情報を格納する新しい出力レイヤ ファイル。ファイル名の一部として、*.lyr 拡張子を含める必要があります。

Layer File

コードのサンプル

Z スコア レンダリング処理(ZScore Rendering)ツールの例(Python ウィンドウ)

次の Python ウィンドウのスクリプトは、[Z スコア レンダリング処理(ZScore Rendering)] ツールを使用する方法を示しています。

import arcpy
arcpy.env.workspace = r"C:\data"
arcpy.ZRenderer_stats("hotspot_output.shp", "GiInvDst", "hotspot_output_rendered.lyr")
Z スコア レンダリング処理(ZScore Rendering)ツールの例(スタンドアロン Python スクリプト)

次のスタンドアロン Python スクリプトは、[Z スコア レンダリング処理(ZScore Rendering)] ツールを使用する方法を示しています。

# Perform Hot Spot Analysis for assault incidents
 
# Import system modules
import arcpy
 
# Local variables...
workspace = r"C:\data"
input = "assaults.shp"
collect_output = "collect_output.shp"
collect_count_field = "Count"
hotspot_output = "hotspot_output.shp"
hotspot_output_rendered = "hotspot_output_rendered.lyr"
z_score_field_name = "GiInvDst"
 
try:
    # Set the current workspace (to avoid having to specify the full path to the feature classes each time)
    arcpy.env.workspace = workspace
 
    # Convert assault incidents into weighted point data
    # Process: Collect Events...
    arcpy.CollectEvents_stats(input, collect_output)
 
    # Calculate Getis-Ord Gi* statistic
    # Process: Hot Spot Analysis (Getis-Ord Gi*)...
    arcpy.HotSpots_stats(collect_output, collect_count_field, hotspot_output, "INVERSE_DISTANCE", "EUCLIDEAN_DISTANCE", "NONE", "#", "#", "#")
 
    # Render hot spot analysis
    # Process: ZScore Rendering...
    arcpy.ZRenderer_stats(hotspot_output, z_score_field_name, hotspot_output_rendered)
 
except:
    # If an error occurred when running the tool, print out the error message.
    print arcpy.GetMessages(2)

環境

関連項目

ライセンス情報

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

7/10/2012