pgr_bdDijkstra¶
pgr_bdDijkstra — Returns the shortest path(s) using Bidirectional Dijkstra algorithm.
Availability:
- pgr_bdDijkstra(one to one) 2.0.0, Signature changed 2.4.0
Signature Summary¶
pgr_dijkstra(edges_sql, start_vid, end_vid)
pgr_bdDijkstra(edges_sql, start_vid, end_vid, directed)
RETURNS SET OF (seq, path_seq, node, edge, cost, agg_cost)
OR EMPTY SET
Signatures¶
Minimal signature¶
pgr_bdDijkstra(edges_sql, start_vid, end_vid)
RETURNS SET OF (seq, path_seq, node, edge, cost, agg_cost) or EMPTY SET
The minimal signature is for a directed graph from one start_vid to one end_vid:
| Example: |
|---|
SELECT * FROM pgr_bdDijkstra(
'SELECT id, source, target, cost, reverse_cost FROM edge_table',
2, 3
);
seq | path_seq | node | edge | cost | agg_cost
-----+----------+------+------+------+----------
1 | 1 | 2 | 4 | 1 | 0
2 | 2 | 5 | 8 | 1 | 1
3 | 3 | 6 | 9 | 1 | 2
4 | 4 | 9 | 16 | 1 | 3
5 | 5 | 4 | 3 | 1 | 4
6 | 6 | 3 | -1 | 0 | 5
(6 rows)
pgr_bdDijkstra One to One¶
pgr_bdDijkstra(edges_sql, start_vid, end_vid, directed)
RETURNS SET OF (seq, path_seq, node, edge, cost, agg_cost) or EMPTY SET
- This signature finds the shortest path from one
start_vidto oneend_vid: - on a directed graph when
directedflag is missing or is set totrue. - on an undirected graph when
directedflag is set tofalse.
- on a directed graph when
| Example: |
|---|
SELECT * FROM pgr_bdDijkstra(
'SELECT id, source, target, cost, reverse_cost FROM edge_table',
2, 3,
false
);
seq | path_seq | node | edge | cost | agg_cost
-----+----------+------+------+------+----------
1 | 1 | 2 | 2 | 1 | 0
2 | 2 | 3 | -1 | 0 | 1
(2 rows)
Description of the Signatures¶
Description of the edges_sql query for dijkstra like functions¶
| edges_sql: | an SQL query, which should return a set of rows with the following columns: |
|---|
| Column | Type | Default | Description |
|---|---|---|---|
| id | ANY-INTEGER |
Identifier of the edge. | |
| source | ANY-INTEGER |
Identifier of the first end point vertex of the edge. | |
| target | ANY-INTEGER |
Identifier of the second end point vertex of the edge. | |
| cost | ANY-NUMERICAL |
Weight of the edge (source, target)
|
|
| reverse_cost | ANY-NUMERICAL |
-1 | Weight of the edge (target, source),
|
Where:
| ANY-INTEGER: | SMALLINT, INTEGER, BIGINT |
|---|---|
| ANY-NUMERICAL: | SMALLINT, INTEGER, BIGINT, REAL, FLOAT |
Description of the parameters of the signatures¶
| Column | Type | Default | Description |
|---|---|---|---|
| sql | TEXT |
SQL query as described above. | |
| start_vid | BIGINT |
Identifier of the starting vertex of the path. | |
| start_vids | ARRAY[BIGINT] |
Array of identifiers of starting vertices. | |
| end_vid | BIGINT |
Identifier of the ending vertex of the path. | |
| end_vids | ARRAY[BIGINT] |
Array of identifiers of ending vertices. | |
| directed | BOOLEAN |
true |
|
Description of the return values for a path¶
Returns set of (seq, path_seq [, start_vid] [, end_vid], node, edge, cost, agg_cost)
| Column | Type | Description |
|---|---|---|
| seq | INT |
Sequential value starting from 1. |
| path_id | INT |
Path identifier. Has value 1 for the first of a path. Used when there are multiple paths for the same start_vid to end_vid combination. |
| path_seq | INT |
Relative position in the path. Has value 1 for the beginning of a path. |
| start_vid | BIGINT |
Identifier of the starting vertex. Used when multiple starting vetrices are in the query. |
| end_vid | BIGINT |
Identifier of the ending vertex. Used when multiple ending vertices are in the query. |
| node | BIGINT |
Identifier of the node in the path from start_vid to end_vid. |
| edge | BIGINT |
Identifier of the edge used to go from node to the next node in the path sequence. -1 for the last node of the path. |
| cost | FLOAT |
Cost to traverse from node using edge to the next node in the path sequence. |
| agg_cost | FLOAT |
Aggregate cost from start_v to node. |
See Also¶
- The queries use the Sample Data network.
- http://www.cs.princeton.edu/courses/archive/spr06/cos423/Handouts/EPP%20shortest%20path%20algorithms.pdf
- https://en.wikipedia.org/wiki/Bidirectional_search
Indices and tables

