[GRASS-SVN] r41785 - in grass/trunk/vector: . v.net.centrality
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat Apr 10 14:58:48 EDT 2010
Author: neteler
Date: 2010-04-10 14:58:45 -0400 (Sat, 10 Apr 2010)
New Revision: 41785
Modified:
grass/trunk/vector/Makefile
grass/trunk/vector/v.net.centrality/main.c
grass/trunk/vector/vectorintro.html
Log:
activate new v.net.* modules; add to intro; typo fix
Modified: grass/trunk/vector/Makefile
===================================================================
--- grass/trunk/vector/Makefile 2010-04-10 18:35:01 UTC (rev 41784)
+++ grass/trunk/vector/Makefile 2010-04-10 18:58:45 UTC (rev 41785)
@@ -36,10 +36,19 @@
v.neighbors \
v.net \
v.net.alloc \
+ v.net.allpairs \
+ v.net.bridge \
+ v.net.centrality \
+ v.net.components \
+ v.net.connectivity \
+ v.net.distance \
+ v.net.flow \
v.net.iso \
v.net.path \
v.net.salesman \
+ v.net.spanningtree \
v.net.steiner \
+ v.net.timetable \
v.net.visibility \
v.normal \
v.out.ascii \
Modified: grass/trunk/vector/v.net.centrality/main.c
===================================================================
--- grass/trunk/vector/v.net.centrality/main.c 2010-04-10 18:35:01 UTC (rev 41784)
+++ grass/trunk/vector/v.net.centrality/main.c 2010-04-10 18:58:45 UTC (rev 41785)
@@ -5,7 +5,7 @@
*
* AUTHOR(S): Daniel Bundala
*
- * PURPOSE: This module computes various cetrality measures
+ * PURPOSE: This module computes various centrality measures
*
* COPYRIGHT: (C) 2002-2005 by the GRASS Development Team
*
@@ -97,7 +97,7 @@
G_add_keyword(_("centrality measures"));
module->description =
_("Computes degree, centrality, betweeness, closeness and eigenvector "
- "cetrality measures in the network.");
+ "centrality measures in the network.");
/* Define the different options as defined in gis.h */
map_in = G_define_standard_option(G_OPT_V_INPUT);
Modified: grass/trunk/vector/vectorintro.html
===================================================================
--- grass/trunk/vector/vectorintro.html 2010-04-10 18:35:01 UTC (rev 41784)
+++ grass/trunk/vector/vectorintro.html 2010-04-10 18:58:45 UTC (rev 41785)
@@ -291,12 +291,21 @@
<li> Vector maintenance: <a href="v.net.html">v.net</a></li>
<li> Shortest path: <a href="d.path.html">d.path</a> and
<a href="v.net.path.html">v.net.path</a></li>
-<li> Traveling salesman (round trip): <a href="v.net.salesman.html">v.net.salesman</a></li>
+<li> Shortest path between all pairs of nodes <a href="v.net.allpairs.html">v.net.allpairs</a>
<li> Allocation of sources (create subnetworks, e.g. police station zones):
<a href="v.net.alloc.html">v.net.alloc</a></li>
-<li> Minimum Steiner trees (star-like connections, e.g. broadband cable
+<li> Iso-distances (from centers): <a href="v.net.iso.html">v.net.iso</a></li>
+<li> Computes bridges and articulation points: <a href="v.net.bridge.html">v.net.bridge</a></li>
+<li> Computes degree, centrality, betweeness, closeness and eigenvector centrality measures: <a href="v.net.centrality.html">v.net.centrality</a></li>
+<li> Computes strongly and weakly connected components: <a href="v.net.components.html">v.net.components</a></li>
+<li> Computes vertex connectivity between two sets of nodes: <a href="v.net.connectivity.html">v.net.connectivity</a></li>
+<li> Computes shortest distance via the network between the given sets of features: <a href="v.net.distance.html">v.net.distance</a></li>
+<li> Computes the maximum flow between two sets of nodes: <a href="v.net.flow.html">v.net.flow</a></li>
+<li> Computes minimum spanning tree:<a href="v.net.spanningtree.html">v.net.spanningtree</a></li>
+<li> Minimum Steiner trees (star-like connections, e.g. broadband cable
connections): <a href="v.net.steiner.html">v.net.steiner</a></li>
-<li> Iso-distances (from centers): <a href="v.net.iso.html">v.net.iso</a></li>
+<li> Finds shortest path using timetables: <a href="v.net.timetable.html">v.net.timetable</a></li>
+<li> Traveling salesman (round trip): <a href="v.net.salesman.html">v.net.salesman</a></li>
</ul>
Vector directions are defined by the digitizing direction (a-->--b).
More information about the grass-commit
mailing list