操作方法

操作方法:使用字段计算器批量计算线方向

Last Published: April 24, 2024

摘要

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

过程

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:000015375

从 ArcGIS 专家处获得帮助

联系技术支持部门

下载 Esri 支持应用程序

转至下载选项

相关信息

发现关于本主题的更多内容