File: v.net.spanningtree.html

package info (click to toggle)
grass 8.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 277,040 kB
  • sloc: ansic: 460,798; python: 227,732; cpp: 42,026; sh: 11,262; makefile: 7,007; xml: 3,637; sql: 968; lex: 520; javascript: 484; yacc: 450; asm: 387; perl: 157; sed: 25; objc: 6; ruby: 4
file content (36 lines) | stat: -rw-r--r-- 1,137 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<h2>DESCRIPTION</h2>

<em>v.net.spanningtree</em> finds the minimum spanning tree in a
network.

<h2>NOTES</h2>

A spanning tree is a minimum cost subnetwork connecting all nodes in an
undirected network (same forward and backward costs). If a network is
disconnected then the module computes the minimum spanning tree for
each (weakly) connected component. So, strictly speaking,
<em>v.net.spanningtree</em> does not compute spanning tree but a
spanning forest. As the name suggests, a spanning tree is a tree. That
is, it contains no cycles and if a component has N nodes then the tree
has N-1 edges connecting all nodes. <b>Accol</b> is used to specify the
costs of the edges. The <b>output</b> consists of the edges in the
spanning tree.

<h2>EXAMPLES</h2>

Find cheapest set of pipelines connecting all nodes.
<div class="code"><pre>
v.net.spanningtree input=projected_pipelines output=spanningtree accol=cost
</pre></div>

<h2>SEE ALSO</h2>

<em>
<a href="v.net.html">v.net</a>,
<a href="v.net.steiner.html">v.net.steiner</a>
</em>

<h2>AUTHORS</h2>

Daniel Bundala, Google Summer of Code 2009, Student<br>
Wolf Bergenheim, Mentor