2013-04-23 17:56:03 +02:00
|
|
|
pgRouting extends the PostGIS / PostgreSQL geospatial database to provide
|
|
|
|
geospatial routing functionality.
|
|
|
|
|
|
|
|
The following algorithms are compiled:
|
2016-11-14 22:02:09 +01:00
|
|
|
* All Pairs Shortest Path, Johnson's Algorithm
|
|
|
|
* All Pairs Shortest Path, Floyd-Warshall Algorithm
|
2013-10-29 21:29:14 +01:00
|
|
|
* Shortest Path A*
|
2016-11-14 22:02:09 +01:00
|
|
|
* Bi-directional Dijkstra Shortest Path
|
|
|
|
* Bi-directional A* Shortest Path
|
2013-10-29 21:29:14 +01:00
|
|
|
* Shortest Path Dijkstra
|
|
|
|
* Driving Distance
|
2016-11-14 22:02:09 +01:00
|
|
|
* K-Shortest Path, Multiple Alternative Paths
|
|
|
|
* K-Dijkstra, One to Many Shortest Path
|
2013-10-29 21:29:14 +01:00
|
|
|
* Traveling Sales Person
|
|
|
|
* Turn Restriction Shortest Path
|
2013-04-23 17:56:03 +02:00
|
|
|
|
2013-10-29 21:29:14 +01:00
|
|
|
To build the pgRouting documentation, pass WITH_DOC=YES to the script
|
|
|
|
(this requires the Sphinx package to be installed).
|