- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have a polyline with say 100 nodes along the way, running in the direction it wants to. I want to spit out a coordinates list for each node (which is what the command LIST is good for), but on top of this, I want an extra column/Output at each node for the chainage along the way. So say for example each node is 3 metres after the previous node, the first Outputs would read:
At Point X=(x-coordinate) Y=(y-coordinate) C=0.000
At Point X=(x-coordinate) Y=(y-coordinate) C=3.000
At Point X=(x-coordinate) Y=(y-coordinate) C=6.000
At Point X=(x-coordinate) Y=(y-coordinate) C=9.000
...and so on
I don't care what the chainage is called (in the example above I called it "C"), nor whether this is before or after the X/Y coordinates.
Does anyone know how this can be done?
If via Lisp, then perhaps the output can be even more simplified to save cleaning up in Excel (removing the "At Point X=" etc from the cells) after reading out:
(x-coordinate), (y-coordinate), (Chainage)
Solved! Go to Solution.