Linearer Richtungsmittelwert (Räumliche Statistiken)

Zusammenfassung

Identifiziert die mittlere Richtung, die mittlere Länge und den mittleren geographischen Mittelpunkt für einen Satz von Linien.

Weitere Informationen über die Funktionsweise des Werkzeugs "Linearer Richtungsmittelwert"

Abbildung

Abbildung: linearer Richtungsmittelwert

Verwendung

Syntax

DirectionalMean_stats (Input_Feature_Class, Output_Feature_Class, Orientation_Only, {Case_Field})
ParameterErläuterungDatentyp
Input_Feature_Class

Die Feature-Class mit Vektoren, für die die mittlere Richtung berechnet wird

Feature Layer
Output_Feature_Class

Eine Line-Feature-Class, die die Features mit den mittleren Richtungen der Eingabe-Feature-Class enthält

Feature Class
Orientation_Only
  • DIRECTIONAusgangs- und Zielknoteninformationen werden ignoriert.
  • ORIENTATION_ONLYAusgangs- und Zielknoten werden bei der Berechnung des Mittelwerts (Standardwert) berücksichtigt.
Boolean
Case_Field
(optional)

Das Feld, das zur Gruppierung von Features für separate Berechnungen des Richtungsmittelwerts verwendet wird. Das Case-Feld kann eine Ganzzahl, ein Datum oder eine Zeichenfolge aufweisen.

Field

Codebeispiel

LinearDirectionalMean – Beispiel (Python-Fenster)

Das folgende Skript im Python-Fenster veranschaulicht, wie Sie das Werkzeug "LinearDirectionalMean" verwenden.

import arcpy
arcpy.env.workspace = r"C:\data"
arcpy.DirectionalMean_stats("AutoTheft_links.shp", "auto_theft_LDM.shp", "DIRECTION", "#")
LinearDirectionalMean – Beispiel (eigenständiges Python-Skript)

Das folgende eigenständige Python-Skript veranschaulicht, wie Sie das Werkzeug "LinearDirectionalMean" verwenden.

# 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()

Umgebungen

Ausgabe-Koordinatensystem

Die Feature-Geometrie wird vor der Analyse auf das Ausgabe-Koordinatensystem projiziert.

Verwandte Themen

Lizenzinformationen

ArcView: Ja
ArcEditor: Ja
ArcInfo: Ja

7/10/2012