摘要
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.
- 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.
- 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.
- Add another new field to the attribute table and name this field NorthAzimu. Set the field type to Double.
- 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! )))
- To convert from North Azimuth to Quadrant Bearing, add another new field: Quadrant; set the data type to String.
- 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