Solved! Go to Solution.
I believe I have found an, albeit lengthy, workaround. I created a unique ID for each of the paths by concatenating the x midpoint, y midpoint, and z start point of each route (line). I then took the table out of ArcMap and into Excel and reordered the OIDs.
uid(1)
i = None def uid(start): global i try: i = i + 1 except: i = start return i
I believe I have found an, albeit lengthy, workaround. I created a unique ID for each of the paths by concatenating the x midpoint, y midpoint, and z start point of each route (line). I then took the table out of ArcMap and into Excel and reordered the OIDs.
uid(1)
i = None def uid(start): global i try: i = i + 1 except: i = start return i