[GRASS-SVN] r68338 - grass/branches/releasebranch_7_0/vector/v.net

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Apr 30 11:59:58 PDT 2016


Author: neteler
Date: 2016-04-30 11:59:58 -0700 (Sat, 30 Apr 2016)
New Revision: 68338

Modified:
   grass/branches/releasebranch_7_0/vector/v.net/v.net.html
Log:
v.net manual: fix example

Modified: grass/branches/releasebranch_7_0/vector/v.net/v.net.html
===================================================================
--- grass/branches/releasebranch_7_0/vector/v.net/v.net.html	2016-04-30 18:59:21 UTC (rev 68337)
+++ grass/branches/releasebranch_7_0/vector/v.net/v.net.html	2016-04-30 18:59:58 UTC (rev 68338)
@@ -39,7 +39,7 @@
 category. In order to assign unique costs to each line, a new layer 
 needs to be created with<br>
 <!-- like this it is rather useless, still to be improved (eg as a full example below!) -->
-<tt>v.category map=yourmap operation=add cat=1 step=1 layer=3</tt><br>
+<tt>v.category map=yourmap option=add cat=1 step=1 layer=3</tt><br>
 followed by<br>
 <tt>v.db.addtable map=yourmap layer=3 table=tablename</tt>.</li>
 
@@ -132,7 +132,7 @@
 <div class="code"><pre>
 v.net input=streets_wake output=streets_node operation=nodes
 # verify result
-v.category streets_node operation=report
+v.category streets_node option=report
 </pre></div>
 
 <h3>Merge in nodes from a separate map within given threshold</h3>
@@ -141,7 +141,7 @@
 v.net input=streets_wake points=firestations out=streets_net \
       operation=connect threshold=500
 # verify result
-v.category streets_net operation=report
+v.category streets_net option=report
 </pre></div>
 
 The nodes are stored in layer 2 unless <tt>node_layer=1</tt> is used.
@@ -161,7 +161,7 @@
 v.net points=geodetic_swwake_pts output=geodetic_swwake_pts_net \
       operation=arcs file=points.txt
 # verify result
-v.category geodetic_swwake_pts_net operation=report
+v.category geodetic_swwake_pts_net option=report
 </pre></div>
 
 <p>
@@ -175,7 +175,7 @@
 EOF
 
 # verify result
-v.category geodetic_swwake_pts_net operation=report
+v.category geodetic_swwake_pts_net option=report
 </pre></div>
 
 <h2>SEE ALSO</h2>



More information about the grass-commit mailing list