other versions
- jessie 6.4.4-1
- stretch 7.2.0-2
- testing 7.6.0-1
- unstable 7.6.0-1
- experimental 7.6.1-1~exp1
| v.net.connectivity(1grass) | Grass User's Manual | v.net.connectivity(1grass) |
NAME¶
v.net.connectivity - Computes vertex connectivity between two sets of nodes in the network.KEYWORDS¶
vector, network, connectivitySYNOPSIS¶
v.net.connectivityFlags:¶
- --overwrite
-
Allow output files to overwrite existing files
- --verbose
-
Verbose module output
- --quiet
-
Quiet module output
Parameters:¶
- input=name
-
Name of input vector map
- layer=integer
-
Layer numberA single vector map can be connected to multiple database tables. This number determines which table to use.Default: 1
- output=name
-
Name for output vector map
- ncolumn=name
-
Name of node capacity column
- set1_layer=integer
-
Set1 layer number or nameA single vector map can be connected to multiple database tables. This number determines which table to use.Default: 1
- set1_cats=range
-
Set1 category valuesExample: 1,3,7-9,13
- set1_where=sql_query
-
Set1 WHERE conditions of SQL statement without 'where' keywordExample: income = 10000
- set2_layer=integer
-
Layer numberSet2 layer number or nameDefault: 1
- set2_cats=range
-
Category valuesSet2 category values
- set2_where=sql_query
-
Set2 WHERE conditions of SQL statement without 'where' keywordExample: income = 10000
DESCRIPTION¶
v.net.connectivity computes vertex connectivity between two sets, i.e. the minimum number of vertices whose removal would separate two given sets.NOTES¶
Two sets ( set1 and set2) are specified by respective layer, where and cats parameters. Similarly to v.net.flow module, capacities of nodes can be given by ncolumn option. v.net.connectivity finds the set of nodes of minimum total capacitiy separating the two given sets and outputs map containing points on the positions of these nodes. Default capacity, which is used when no column is specified, is one.EXAMPLES¶
The following command finds the minimum number of intersections separating roads on the left bank from roads on the right bank.set2_where="bank=right"
set1_where="name=JFK" set2_where="name=Heathrow" ncolumn=capacity
SEE ALSO¶
v.net, v.net.flow, v.net.bridgeAUTHORS¶
Daniel Bundala, Google Summer of Code 2009, Student| GRASS 6.4.4 |