123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <h2>DESCRIPTION</h2>
- Imports a stream of ASCII x,y[,z] coordinates as a line or series of lines.
- <h2>NOTES</h2>
- Input ASCII coordinates are simply a series of "x y" data points.
- Lines are separated by a row containing "<tt>NaN NaN</tt>".
- <!-- TODO:? Line categories start at 1 and increase sequentially. -->
- <p>The user can import 3D lines by providing 3 columns of data in the input
- stream and using the <b>-z</b> flag.
- <p>This script is a simple wrapper around the <em>v.in.mapgen</em> module.
- <h2>EXAMPLE</h2>
- <div class="code"><pre>
- v.in.lines in=- out=two_lines separator=, <<EOF
- 167.846717,-46.516653
- 167.846663,-46.516645
- 167.846656,-46.516644
- 167.846649,-46.516644
- 167.846642,-46.516643
- NaN,NaN
- 167.846520,-46.516457
- 167.846528,-46.516461
- 167.846537,-46.516464
- 167.846535,-46.516486
- 167.846544,-46.516489
- 167.846552,-46.516493
- EOF
- </pre></div>
- <h2>SEE ALSO</h2>
- <em>
- <a href="v.in.ascii.html">v.in.ascii</a>,
- <a href="v.in.mapgen.html">v.in.mapgen</a>,
- <a href="v.out.ascii.html">v.out.ascii</a>,
- <a href="d.graph.html">d.graph</a>,
- <a href="r.in.poly.html">r.in.poly</a>
- </em>
- <h2>AUTHOR</h2>
- Hamish Bowman<br>
- Dunedin, New Zealand
- <p><i>Last changed: $Date$</i>
|