Vector network analysis/pl
Narzędzia GRASS do analiz sieciowych bazują na bibliotece DGlib Directed Graph Library.
GRASS 7 has WxGUI Vector Network Analysis Tool front-end, which supports some of the vector network analysis modules.
Zaimplementowane algorytmy
Poniższe algorytmy są zaimplementowane (w GRASS 6.5+):
- Utrzymanie sieci: v.net
- Najkrótsza trasa: d.path and v.net.path
- Najkrótsza trasa pomiędzy wszystkimi parami punktów: v.net.allpairs
- Wyznaczanie podsieci (tworzenie podsieci, np. police station zones): v.net.alloc
- Strefy jednakowych odległości (ze środków): v.net.iso
- Obliczanie mostów i punktów artykulacji: v.net.bridge
- Computes degree, centrality, betweeness, closeness and eigenvector centrality measures: v.net.centrality
- Obliczanie dobrze i słabo połączonych komponentów: v.net.components
- Obliczanie stopnia połączenia pomiędzy dwoma zestawami punktów: v.net.connectivity
- Obliczanie najkrótszej drogi w sieci pomiędzy zadanymi zestawami obiektów: v.net.distance
- Obliczanie maksymalnego przepływu pomiędzy dwoma zestawami punktów: v.net.flow
- Obliczanie minimalnego drzewa rozpinającego: v.net.spanningtree
- Minimalne drzewa Steinera (star-like connections, e.g. broadband cable connections): v.net.steiner
- Znajdowanie najkrótszej drogi z użyciem rozkładów jazdy: v.net.timetable
- Analizy komiwojażera (round trip): v.net.salesman
Vector directions are defined by the digitizing direction (a-->--b). You can navigate either omnidirectionally or differently in each directions as both directions are supported. Network modules provide parameters to assign attribute columns to the forward and backward direction. To see how a vector is directed, use the "display" parameter of d.vect (set display=dir). Use Turntable to assign costs to turns on the network.
- strona pomocy vectorintro "vector map processing and network analysis"
Przykład: Najkrótsza droga
- zobacz strony opisujące v.net.path i d.path
Najważniejsze parametry
- input - This is the name of input vector map or data source for direct OGR access.
- output - This is the name for output vector map.
- type - This parameter defines arc type, which can be line or boundary.
- alayer - This parameter is a number and defines the arc layer. Vector features can have category values in different layers. This number determines which layer to use. When used with direct OGR access this is the layer name.
- nlayer - This parameter is a number and defines the node layer. Vector features can have category values in different layers. This number determines which layer to use. When used with direct OGR access this is the layer name.
- afcolumn - This is name of the cost column for moving in forward direction or forward and backward directions together.
- abcolumn - This is name of the cost column for moving in backward direction.
- ncolumn - This is name of the cost column for moving through nodes.
If you are not familiar with layers concept in GRASS see Vector Database Management.
Nowe pomysły
- Vector network analysis ideas (pomóż w realizacji)
Zrzuty ekranu z GRASS GIS 7
Zobacz też
- WxGUI Vector Network Analysis Tool
- więcej zrzutów ekranu ze strony GRASS
Zrzuty ekranu ze starszej wersji GRASS 5
See also
- Turntable
- GSoC Network Analysis: wiele nowych modułów!