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.distance(1grass) | Grass User's Manual | v.net.distance(1grass) |
NAME¶
v.net.distance - Computes shortest distance via the network between the given sets of features.KEYWORDS¶
vector, network, shortest pathSYNOPSIS¶
v.net.distanceFlags:¶
- -g
-
Use geodesic calculation for longitude-latitude locations
- --overwrite
-
Allow output files to overwrite existing files
- --verbose
-
Verbose module output
- --quiet
-
Quiet module output
Parameters:¶
- input=name
-
Name of input vector map
- output=name
-
Name for output vector map
- from_layer=integer
-
From layer number or nameA single vector map can be connected to multiple database tables. This number determines which table to use.Default: 1
- from_cats=range
-
From category valuesExample: 1,3,7-9,13
- from_where=sql_query
-
From WHERE conditions of SQL statement without 'where' keywordExample: income = 10000
- to_layer=integer
-
Layer numberTo layer number or nameDefault: 1
- to_cats=range
-
To category valuesExample: 1,3,7-9,13
- to_where=sql_query
-
To WHERE conditions of SQL statement without 'where' keywordExample: income = 10000
- to_type=string[,string,...]
-
To feature typeOptions: point,line,boundaryDefault: point
- afcolumn=name
-
Arc forward/both direction(s) cost column
- abcolumn=name
-
Arc backward direction cost column
DESCRIPTION¶
v.net.distance finds the nearest element in set to for every point in set from.NOTES¶
These two sets are given by the respective layer, where and cats parameters. The type of to features is specified by to_type parameter. All from features are points. A table is linked to output map containing various information about the relation. More specifically, the table has three columns: cat, tcat and dist storing category of each from feature, category of the nearest to feature and the distance between them respectively. Furthemore, output map contains the shorest path between each cat, tcat pair. Each path consist of several lines. If a line is on the shorest path from a point then the category of this point is assigned to the line. Note that every line may contain more than one category value since a single line may be on the shortest path for more than one from feature. And so the shortest paths can be easily obtained by querying lines with corresponding category number.EXAMPLES¶
Find shortest path and distance from every school to the nearest hospital and show path from school number one.to_where="type=hospital" afcolumn=SHAPE_LEN
SEE ALSO¶
v.net.path, v.net.allpairs, v.net.distance, v.net.allocAUTHORS¶
Daniel Bundala, Google Summer of Code 2009, Student| GRASS 6.4.4 |