------------------------------------------------------------<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
I have points over a line and i need to split the line where the points are<br>
located. The points aren't at the same distance to each other. Any idea how<br>
to do that?<br>
<br></blockquote><div><br><br>If your points lie exactly on the line, you may do so (in Linux with bash) :<br><br>v.out.ascii format=point in=pts --q | cut -d'|' -f1,2 | tr '|' ',' | while read COOR; do v.edit map=line tool=break coords=$COOR; done<br>
<br>------------------------------------------------------------<br></div></div>