Rendu d'effectif (Statistiques spatiales)

Récapitulatif

Applique un rendu par cercles gradués à un champ numérique dans une classe d'entités.

Illustration

Illustration du rendu d'effectif

Utilisation

Syntaxe

CountRenderer_stats (input_feature_class, field_to_render, output_layer_file, number_of_classes, symbol_color, {maximum_field_value})
ParamètreExplicationType de données
input_feature_class

Couche d'entités contenant les données de total à représenter.

Feature Layer
field_to_render

Nom du champ contenant les données de total.

Field
output_layer_file

Nouveau fichier de couche en sortie contenant les informations de rendu. Vous devez ajouter l'extension .lyr au nom du fichier.

Layer File
number_of_classes

Nombre de classes dans lesquelles la classe d'entités en entrée est classée.

Long
symbol_color

Couleur des cercles gradués.

  • MANGO
  • BRIGHT_RED
  • DARK_GREEN
  • GREEN
  • DARK_BLUE
  • BRIGHT_PINK
  • LIGHT_YELLOW
  • SKY_BLUE
String
maximum_field_value
(Facultatif)

Valeur attributaire maximale à représenter. Les entités dont les valeurs de champ sont supérieures à cette valeur maximale ne sont pas dessinées.

Double

Exemple de code

Exemple 1 d'utilisation de l'outil CountRenderer (fenêtre Python)

Le script de fenêtre Python ci-dessous illustre l'utilisation de l'outil CountRenderer.

import arcpy
arcpy.env.workspace = "c:/data"
arcpy.CountRenderer_stats("autotheft_weighted.shp", "Count", "auto_weight_rendered.lyr", "5", "mango","#")
Exemple 2 d'utilisation de l'outil CountRenderer (script Python autonome)

Le script Python autonome ci-dessous illustre l'utilisation de l'outil 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()

Environnements

Rubriques connexes

Informations de licence

ArcView : Obligatoire V
ArcEditor : Obligatoire V
ArcInfo : Obligatoire V

7/10/2012