カウントのレンダリング処理(Count Rendering) (空間統計)

サマリ

等級シンボル レンダリングをフィーチャクラスの数値フィールドに適用します。

Count Renderer illustration

使用法

構文

CountRenderer_stats (input_feature_class, field_to_render, output_layer_file, number_of_classes, symbol_color, {maximum_field_value})
パラメータ説明データ タイプ
input_feature_class

レンダリングするカウント データが含まれているフィーチャ レイヤ。

Feature Layer
field_to_render

カウント データが含まれているフィールドの名前。

Field
output_layer_file

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

Layer File
number_of_classes

入力フィーチャクラスが分類されるクラスの数。

Long
symbol_color

等級シンボルの色。

  • MANGO
  • BRIGHT_RED
  • DARK_GREEN
  • GREEN
  • DARK_BLUE
  • BRIGHT_PINK
  • LIGHT_YELLOW
  • SKY_BLUE
String
maximum_field_value
(オプション)

レンダリングされる最大属性値。フィールド値がこの最大値よりも大きいフィーチャは描画されません。

Double

コードのサンプル

CountRenderer(カウントのレンダリング処理)の例 1(Python ウィンドウ)

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

import arcpy
arcpy.env.workspace = "c:/data"
arcpy.CountRenderer_stats("autotheft_weighted.shp", "Count", "auto_weight_rendered.lyr", "5", "mango","#")
CountRenderer(カウントのレンダリング処理)の例 2(スタンドアロン Python スクリプト)

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

# Convert incident data to weighted point data and render
 
# Import system modules
import arcpy, sys, string, os
 
# Local variables...
workspace = "C:/data"
input = "AutoTheft.shp"
input_weighted = "autotheft_weighted.shp"
results_field = "Count"
input_weighted_rendered = "auto_weight_rendered.lyr"
 
try:
    # Set the current workspace (to avoid having to specify the full path to the feature classes each time)
    arcpy.env.workspace = workspace
 
    # Process: Collect Events...
    arcpy.CollectEvents_stats(input, input_weighted, results_field)
 
    # Process: Count Rendering...
    arcpy.CountRenderer_stats(input_weighted, results_field, input_weighted_rendered, "5", "MANGO", "#")
 
except:
    # If an error occurred when running the tool, print out the error message.
    print arcpy.GetMessages()

環境

関連項目

ライセンス情報

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

7/10/2012