レンダリング処理を含むイベントの集計(Collect Events with Rendering) (空間統計)

サマリ

イベント データを重み付きポイントに変換し、重みに応じて大きさを変える円(等級シンボル)によって、各ポイントを表します。

レガシレガシ:

ArcGIS の新機能でスクリプトからの出力とモデル ツールのデフォルトのレンダリングへの関連付けが可能になるため、このツールは ArcGIS 10.1 より後は廃止になります。

Collect Events illustration

使用法

構文

CollectEventsRendered_stats (Input_Incident_Features, Output_Layer, Output_Weighted_Point_Feature_Class)
パラメータ説明データ タイプ
Input_Incident_Features

イベントまたはインシデント データを表すフィーチャ。

Feature Layer
Output_Layer

等級シンボル レンダリング情報を格納するためのレイヤ ファイル(*.lyr)。

Layer File
Output_Weighted_Point_Feature_Class

重み付きポイント データを格納するための出力フィーチャクラス。

Feature Class

コードのサンプル

レンダリング処理を含むイベントの集計(Collect Events with Rendering)ツールの例(Python ウィンドウ)

次の Python ウィンドウのスクリプトは、[レンダリング処理を含むイベントの集計(Collect Events with Rendering)] ツールを使用する方法を示しています。

import arcpy
arcpy.env.workspace = "C:/Data"
arcpy.CollectEventsRendered_stats("911.shp", "911Count_rendered.lyr", "911Count.shp")
レンダリング処理を含むイベントの集計(Collect Events with Rendering)ツールの例(スタンドアロン Python スクリプト)

次のスタンドアロン Python スクリプトは、[レンダリング処理を含むイベントの集計(Collect Events with Rendering)] ツールを使用する方法を示しています。

# Analyze the spatial distribution of 911 calls in a metropolitan area
# using the Hot-Spot Analysis Tool (Local Gi*)

# Import system modules
import arcpy

# Set geoprocessor object property to overwrite existing output, by default
arcpy.gp.overwriteOutput = True

# Local variables...
workspace = "C:/Data"

try:
    # Set the current workspace (to avoid having to specify the full path to the feature classes each time)
    arcpy.env.workspace = workspace

    # Copy the input feature class and integrate the points to snap
    # together at 500 feet
    # Process: Copy Features and Integrate
    cf = arcpy.CopyFeatures_management("911Calls.shp", "911Copied.shp",
                         "#", 0, 0, 0)

    integrate = arcpy.Integrate_management("911Copied.shp #", "500 Feet")

    # Use Collect Events to count the number of calls at each location
    # Process: Collect Events
    ce = arcpy.CollectEventsRendered_stats("911Copied.shp", "911Count_rendered.lyr", "911Count.shp")

    # Add a unique ID field to the count feature class
    # Process: Add Field and Calculate Field
    af = arcpy.AddField_management("911Count.shp", "MyID", "LONG", "#", "#", "#", "#",
                     "NON_NULLABLE", "NON_REQUIRED", "#",
                     "911Count.shp")
    
    cf = arcpy.CalculateField_management("911Count.shp", "MyID", "[FID]", "VB")

    # Create Spatial Weights Matrix for Calculations
    # Process: Generate Spatial Weights Matrix... 
    swm = arcpy.GenerateSpatialWeightsMatrix_stats("911Count.shp", "MYID",
                        "euclidean6Neighs.swm",
                        "K_NEAREST_NEIGHBORS",
                        "#", "#", "#", 6,
                        "NO_STANDARDIZATION") 

    # Hot Spot Analysis of 911 Calls
    # Process: Hot Spot Analysis (Getis-Ord Gi*)
    hs = arcpy.HotSpots_stats("911Count.shp", "ICOUNT", "911HotSpots.shp", 
                     "GET_SPATIAL_WEIGHTS_FROM_FILE",
                     "EUCLIDEAN_DISTANCE", "NONE",
                     "#", "#", "euclidean6Neighs.swm")

except:
    # If an error occurred when running the tool, print out the error message.
    print arcpy.GetMessages()

環境

関連項目

ライセンス情報

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

7/10/2012