Solved! Go to Solution.
North_Angle = ABS([LOC_ANGLE] - 360) + 90 If North_Angle >= 360 Then North_Angle = North_Angle - 360 End If
Create a table in Excel with 4 columns:
1) The pipeline Route ID which will be the same value for every row generated for the next column.
2) A sequential number column for km along the line beginning at 1 and using as many rows that it takes to reach the highest km value for your longest line.
3) A column for side distance offset values that are about the negative double of the length of your buffer width. This column value is the same for every row generated for column 2.
4) A column of values equal to double the absolute value of column 3 to use as a distance to cut across the buffer polygon. This column value is the same for every row generated for column 2.
North_Angle = ABS([LOC_ANGLE] - 360) + 90 If North_Angle >= 360 Then North_Angle = North_Angle - 360 End If
Ok. Thanks. I will try this template.
Currently I have added all the processes in a model but the problem I am facing is that Bearing Distance To Line tool generates only one line whereas when I run this tool manually on same output from Make Route Events Layer it works fine. Can you suggest what is the issue here?