[GRASS-SVN] r50620 - sandbox/martinl/v.test

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Feb 1 17:18:59 EST 2012


Author: martinl
Date: 2012-02-01 14:18:59 -0800 (Wed, 01 Feb 2012)
New Revision: 50620

Modified:
   sandbox/martinl/v.test/v.test.html
Log:
v.test (sandbox): cosmetics in manual page


Modified: sandbox/martinl/v.test/v.test.html
===================================================================
--- sandbox/martinl/v.test/v.test.html	2012-02-01 22:06:54 UTC (rev 50619)
+++ sandbox/martinl/v.test/v.test.html	2012-02-01 22:18:59 UTC (rev 50620)
@@ -6,60 +6,64 @@
 
 <h2>EXAMPLES</h2>
 
+<div class="code"><pre>
+export MAP=vector_map
+</pre></div>
+
 Testing sequential access:
 
 <div class="code"><pre>
 # sequential access on non-topological level
-v.test -s1 map
+v.test -s1 map=$MAP
 
 # sequential access on non-topological level with type constraint
-v.test -s1 map type=line
+v.test -s1 map=$MAP type=line
 
 # sequential access on non-topological level with layer constraint
-v.test -s1 map layer=2
+v.test -s1 map=$MAP layer=2
 
 # sequential access on non-topological level with region constraint
-v.test -s1r map
+v.test -s1r map=$MAP
 
 # sequential access on topological level
-v.test -s map
+v.test -s map=$MAP
 
 # sequential access on topological level with type constraint
-v.test -s map type=line
+v.test -s map=$MAP type=line
 
 # sequential access on topological level with layer constraint
-v.test -s map layer=2
+v.test -s map=$MAP layer=2
 
 # sequential access on topological level with region constraint
-v.test -sr map
+v.test -sr map=$MAP
 </pre></div>
 
 Testing random access:
 
 <div class="code"><pre>
 # random access on non-topological level
-v.test -1 map
+v.test -1 map=$MAP
 
 # random access on non-topological level with type constraint
-v.test -1 map type=line
+v.test -1 map=$MAP type=line
 
 # random access on non-topological level with layer constraint
-v.test -1 map layer=2
+v.test -1 map=$MAP layer=2
 
 # random access on non-topological level with region constraint
-v.test -1r map
+v.test -1r map=$MAP
 
 # random access on topological level
-v.test map
+v.test map=$MAP
 
 # random access on topological level with type constraint
-v.test map type=line
+v.test map=$MAP type=line
 
 # random access on topological level with layer constraint
-v.test map layer=2
+v.test map=$MAP layer=2
 
 # random access on topological level with region constraint
-v.test -r map
+v.test -r map=$MAP
 </pre></div>
 
 <h2>AUTHOR</h2>



More information about the grass-commit mailing list