PROCÉDURE

calculer la direction de ligne par lot à l’aide de la calculatrice de valeurs de champs

Last Published: April 24, 2024

Résumé

The direction of multiple line features can be calculated from their start and end point coordinates by using the Field Calculator.

Procédure

The instructions provided describe how to calculate the line direction of multiple features using a batch process. 

  1. In the attribute table of the line features, add four new fields: START_X, START_Y, END_X, and END_Y. Set the field type for these fields to Double. 
  2. Use the Calculate Geometry function to calculate the X and Y coordinates of the line's start and end position into the four new fields. 
  3. Add another new field to the attribute table and name this field NorthAzimu. Set the field type to Double. 
  4. Calculate the NorthAzimu field with the following Python expression. Refer to the code and image below.
90-math.degrees(math.atan2(( !END_Y! - !START_Y! ),( !END_X! - !START_X! )))
formula shown in the field calculator
  1. To convert from North Azimuth to Quadrant Bearing, add another new field: Quadrant; set the data type to String.
  2. Calculate the Quadrant field by using the Python code block, as seen below. Refer to the image and ensure each item is highlighted appropriately in the Field Calculator window before running the code.
def quadrant(NorthAzimuth):
    if ((NorthAzimuth>=0) & (NorthAzimuth<90)):
        quad = "N "+str(NorthAzimuth)+" E"
    elif ((NorthAzimuth>=90) & (NorthAzimuth<180)):
        quad = "S "+str(180-NorthAzimuth)+" E"
    elif ((NorthAzimuth>=180) & (NorthAzimuth<270)):
        quad = "S "+str(NorthAzimuth-180)+" W"
    else:
        quad = "N "+str(360-NorthAzimuth)+" W"
    return quad
formula shown in the field calculator

ID d’article:000015375

Obtenir de l’aide auprès des experts ArcGIS

Contacter le support technique

Télécharger l’application Esri Support

Accéder aux options de téléchargement

Informations associées

En savoir plus sur ce sujet