[GRASS-SVN] r34538 - in grass/trunk/vector: v.buffer2 v.delaunay2

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Nov 27 11:32:38 EST 2008


Author: glynn
Date: 2008-11-27 11:32:38 -0500 (Thu, 27 Nov 2008)
New Revision: 34538

Added:
   grass/trunk/vector/v.buffer2/v.buffer.html
   grass/trunk/vector/v.delaunay2/v.delaunay.html
Removed:
   grass/trunk/vector/v.buffer2/v.buffer2.html
   grass/trunk/vector/v.delaunay2/v.delaunay2.html
Log:
HTML files must be named after the module, not the directory


Copied: grass/trunk/vector/v.buffer2/v.buffer.html (from rev 34532, grass/trunk/vector/v.buffer2/v.buffer2.html)
===================================================================
--- grass/trunk/vector/v.buffer2/v.buffer.html	                        (rev 0)
+++ grass/trunk/vector/v.buffer2/v.buffer.html	2008-11-27 16:32:38 UTC (rev 34538)
@@ -0,0 +1,58 @@
+<h2>DESCRIPTION</h2>
+
+<em>v.buffer</em> creates a buffer around features of given <b>type</b>, which
+have a category in the given <b>layer</b>. The <b>tolerance</b> controls
+the number of vector segments being generated (the smaller the value, the more
+vector segments are generated).
+
+<h2>NOTES</h2>
+
+<!-- TRUE?? -->
+Attributes are not transferred due to potential buffer overlap, which
+cannot be resolved automatically.
+
+<h2>EXAMPLES</h2>
+
+<h3>Buffer around input lines</h3>
+
+<div class="code"><pre>
+v.buffer input=map output=buffer type=line buffer=100
+</pre></div>
+
+<h3>Circles around input points</h3>
+
+<div class="code"><pre>
+v.buffer input=pointsmap output=circles type=point buffer=1000 
+</pre></div>
+
+<h3>Non-overlapping circles around input points with attribute transfer</h3>
+
+<div class="code"><pre>
+v.buffer input=archsites output=circles type=point buffer=200 
+# change original points to centroids: 
+v.type in=archsites out=archcentroids type=point,centroid 
+# patch circles and centroids: 
+v.patch in=archcentroids,circles out=circles_db 
+# attach attributes, either use 
+# db.copy ... 
+# or link to the original table: 
+v.db.connect map=circles_db table=archsites field=1 key=cat driver=dbf \
+database='$GISDBASE/$LOCATION_NAME/$MAPSET/dbf'
+</pre></div>
+
+<h2>SEE ALSO</h2>
+
+<em>
+<a HREF="r.buffer.html">r.buffer</a>,
+<a HREF="v.extract.html">v.extract</a>,
+<a HREF="v.type.html">v.type</a>,
+<a HREF="v.patch.html">v.patch</a>,
+<a HREF="v.db.connect.html">v.db.connect</a>
+</em>
+
+<h2>AUTHORS</h2>
+
+Radim Blazek<br>
+Rewritten by Rosen Matev (with support through the Google Summer of Code program 2008)
+<p>
+<i>Last changed: $Date: 2008-03-16 16:29:33 +0100 (Sun, 16 Mar 2008) $</i>


Property changes on: grass/trunk/vector/v.buffer2/v.buffer.html
___________________________________________________________________
Name: svn:mergeinfo
   + 

Deleted: grass/trunk/vector/v.buffer2/v.buffer2.html
===================================================================
--- grass/trunk/vector/v.buffer2/v.buffer2.html	2008-11-27 16:32:01 UTC (rev 34537)
+++ grass/trunk/vector/v.buffer2/v.buffer2.html	2008-11-27 16:32:38 UTC (rev 34538)
@@ -1,58 +0,0 @@
-<h2>DESCRIPTION</h2>
-
-<em>v.buffer</em> creates a buffer around features of given <b>type</b>, which
-have a category in the given <b>layer</b>. The <b>tolerance</b> controls
-the number of vector segments being generated (the smaller the value, the more
-vector segments are generated).
-
-<h2>NOTES</h2>
-
-<!-- TRUE?? -->
-Attributes are not transferred due to potential buffer overlap, which
-cannot be resolved automatically.
-
-<h2>EXAMPLES</h2>
-
-<h3>Buffer around input lines</h3>
-
-<div class="code"><pre>
-v.buffer input=map output=buffer type=line buffer=100
-</pre></div>
-
-<h3>Circles around input points</h3>
-
-<div class="code"><pre>
-v.buffer input=pointsmap output=circles type=point buffer=1000 
-</pre></div>
-
-<h3>Non-overlapping circles around input points with attribute transfer</h3>
-
-<div class="code"><pre>
-v.buffer input=archsites output=circles type=point buffer=200 
-# change original points to centroids: 
-v.type in=archsites out=archcentroids type=point,centroid 
-# patch circles and centroids: 
-v.patch in=archcentroids,circles out=circles_db 
-# attach attributes, either use 
-# db.copy ... 
-# or link to the original table: 
-v.db.connect map=circles_db table=archsites field=1 key=cat driver=dbf \
-database='$GISDBASE/$LOCATION_NAME/$MAPSET/dbf'
-</pre></div>
-
-<h2>SEE ALSO</h2>
-
-<em>
-<a HREF="r.buffer.html">r.buffer</a>,
-<a HREF="v.extract.html">v.extract</a>,
-<a HREF="v.type.html">v.type</a>,
-<a HREF="v.patch.html">v.patch</a>,
-<a HREF="v.db.connect.html">v.db.connect</a>
-</em>
-
-<h2>AUTHORS</h2>
-
-Radim Blazek<br>
-Rewritten by Rosen Matev (with support through the Google Summer of Code program 2008)
-<p>
-<i>Last changed: $Date: 2008-03-16 16:29:33 +0100 (Sun, 16 Mar 2008) $</i>

Copied: grass/trunk/vector/v.delaunay2/v.delaunay.html (from rev 34532, grass/trunk/vector/v.delaunay2/v.delaunay2.html)
===================================================================
--- grass/trunk/vector/v.delaunay2/v.delaunay.html	                        (rev 0)
+++ grass/trunk/vector/v.delaunay2/v.delaunay.html	2008-11-27 16:32:38 UTC (rev 34538)
@@ -0,0 +1,50 @@
+<H2>DESCRIPTION</H2>
+
+<EM>v.delaunay2</EM> uses an existing vector points map (<B>input</B>)
+to create a Delaunay triangulation vector map (<B>output</B>).
+<P>
+
+<BR>
+Delaunay triangulation example:
+<center>
+<img src=v_delaunay_spearfish60_archsites.png border=1><BR>
+<table border=0 width=590>
+<tr><td><center>
+<i>Delaunay Triangulation</i>
+</center></td></tr>
+</table>
+</center>
+
+
+<H2>EXAMPLE</H2>
+
+Commands used with the Spearfish dataset to create the above figure.
+<div class="code"><pre>
+  g.region n=4927250 s=4920000 w=588650 e=605850
+  v.delaunay2 -lr in=archsites out=arch_delaunay
+  d.vect map=arch_delaunay color=0:0:255
+</pre></div>
+
+
+<H2>REFERENCES</H2>
+<EM>Leonid Guibas and Jorge Stolfi, (1985). 
+Primitives for the 
+Manipulation of General Subdivisions and the Computation of
+Voronoi Diagrams, ACM Transactions on Graphics, Vol 4, No. 2, 
+April 1985, Pages 74-123
+</EM>
+
+<H2>SEE ALSO</H2>
+<EM>
+<A HREF="v.voronoi.html">v.voronoi</A>, 
+<A HREF="v.hull.html">v.hull</A>
+</EM>
+
+
+<H2>AUTHORS</H2>
+Martin Pavlovsky, Google Summer of Code 2008, Student<br>
+Paul Kelly, Mentor<br>
+
+
+<p>
+<i>Last changed: $Date: (Mon, 18 Aug 2008) $</i></p>


Property changes on: grass/trunk/vector/v.delaunay2/v.delaunay.html
___________________________________________________________________
Name: svn:mergeinfo
   + 

Deleted: grass/trunk/vector/v.delaunay2/v.delaunay2.html
===================================================================
--- grass/trunk/vector/v.delaunay2/v.delaunay2.html	2008-11-27 16:32:01 UTC (rev 34537)
+++ grass/trunk/vector/v.delaunay2/v.delaunay2.html	2008-11-27 16:32:38 UTC (rev 34538)
@@ -1,50 +0,0 @@
-<H2>DESCRIPTION</H2>
-
-<EM>v.delaunay2</EM> uses an existing vector points map (<B>input</B>)
-to create a Delaunay triangulation vector map (<B>output</B>).
-<P>
-
-<BR>
-Delaunay triangulation example:
-<center>
-<img src=v_delaunay_spearfish60_archsites.png border=1><BR>
-<table border=0 width=590>
-<tr><td><center>
-<i>Delaunay Triangulation</i>
-</center></td></tr>
-</table>
-</center>
-
-
-<H2>EXAMPLE</H2>
-
-Commands used with the Spearfish dataset to create the above figure.
-<div class="code"><pre>
-  g.region n=4927250 s=4920000 w=588650 e=605850
-  v.delaunay2 -lr in=archsites out=arch_delaunay
-  d.vect map=arch_delaunay color=0:0:255
-</pre></div>
-
-
-<H2>REFERENCES</H2>
-<EM>Leonid Guibas and Jorge Stolfi, (1985). 
-Primitives for the 
-Manipulation of General Subdivisions and the Computation of
-Voronoi Diagrams, ACM Transactions on Graphics, Vol 4, No. 2, 
-April 1985, Pages 74-123
-</EM>
-
-<H2>SEE ALSO</H2>
-<EM>
-<A HREF="v.voronoi.html">v.voronoi</A>, 
-<A HREF="v.hull.html">v.hull</A>
-</EM>
-
-
-<H2>AUTHORS</H2>
-Martin Pavlovsky, Google Summer of Code 2008, Student<br>
-Paul Kelly, Mentor<br>
-
-
-<p>
-<i>Last changed: $Date: (Mon, 18 Aug 2008) $</i></p>



More information about the grass-commit mailing list