pgr_bdAstarCost¶
pgr_bdAstarCost
- Total cost of the shortest path using the bidirectional
A* algorithm.
可用性
版本3.2.0
新 拟议 的签名:
pgr_bdAstarCost
(组合)
版本3.0.0
官方 函数
版本2.4.0
新 拟议 函数
描述¶
The pgr_bdAstarCost
function sumarizes of the cost of the shortest path
using the bidirectional A* algorithm.
主要特点是:
流程适用于有向图和无向图。
顺序是:
首先按
start_vid
(如果存在)然后按
end_vid
当存在路径时返回值。
设 \(v\) 和 \(u\) 为图上的节点:
如果没有从 \(v\) 到 \(u\) 的路径:
没有返回对应的行
从 \(v\) 到 \(u\) 的
agg_cost
是 \(\infty\)
当 \(v = u\) 没有路径,因此
没有返回对应的行
从 v 到 u 的
agg_cost
是 \(0\)
当同一顶点标识符的 \((x,y)\) 坐标不同时:
使用随机选择的顶点的 \((x,y)\) 坐标。
运行时间: \(O((E + V) * \log V)\)
它不返回路径。
返回所请求的每对节点组合的最短路径的成本总和。
假设返回的值存储在表中,因此唯一索引将是一对:(start_vid, end_vid)
对于无向图,结果是对称的。
(u, v) 的 agg_cost 与 (v, u) 相同。
返回值按升序排列:
start_vid 升序
end_vid 升序
签名¶
总结
[directed, heuristic, factor, epsilon]
(start_vid, end_vid, agg_cost)
的集合一对一¶
[directed, heuristic, factor, epsilon]
(start_vid, end_vid, agg_cost)
的集合- 示例:
在具有heuristic \(2\) 的 有向 图上,从顶点 \(6\) 到顶点 \(12\)
SELECT * FROM pgr_bdAstarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2
FROM edges',
6, 12,
directed => true, heuristic => 2
);
start_vid | end_vid | agg_cost
-----------+---------+----------
6 | 12 | 3
(1 row)
一对多¶
[directed, heuristic, factor, epsilon]
(start_vid, end_vid, agg_cost)
的集合- 示例:
在具有heuristic \(3\) 和factor \(3.5\) 的 有向 图上,从顶点 \(6\) 到顶点 \(\{10, 12\}\)
SELECT * FROM pgr_bdAstarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2
FROM edges',
6, ARRAY[10, 12],
heuristic => 3, factor := 3.5
);
start_vid | end_vid | agg_cost
-----------+---------+----------
6 | 10 | 5
6 | 12 | 3
(2 rows)
多对一¶
[directed, heuristic, factor, epsilon]
(start_vid, end_vid, agg_cost)
的集合- 示例:
在具有heuristic \(4\) 的 无向 图上,从顶点 \(\{6, 8\}\) 到顶点 \(10\)
SELECT * FROM pgr_bdAstarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2
FROM edges',
ARRAY[6, 8], 10,
false, heuristic => 4
);
start_vid | end_vid | agg_cost
-----------+---------+----------
6 | 10 | 1
8 | 10 | 3
(2 rows)
多对多¶
[directed, heuristic, factor, epsilon]
(start_vid, end_vid, agg_cost)
的集合- 示例:
在具有factor \(0.5\) 的 有向 图上,从顶点 \(\{6, 8\}\) 到顶点 \(\{10, 12\}\)
SELECT * FROM pgr_bdAstarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2
FROM edges',
ARRAY[6, 8], ARRAY[10, 12],
factor => 0.5
);
start_vid | end_vid | agg_cost
-----------+---------+----------
6 | 10 | 5
6 | 12 | 3
8 | 10 | 5
8 | 12 | 1
(4 rows)
组合¶
[directed, heuristic, factor, epsilon]
(start_vid, end_vid, agg_cost)
的集合- 示例:
在 有向 图上使用组合表,且使用factor \(0.5\)。
组合表:
SELECT * FROM combinations;
source | target
--------+--------
5 | 6
5 | 10
6 | 5
6 | 15
6 | 14
(5 rows)
查询:
SELECT * FROM pgr_bdAstarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2
FROM edges',
'SELECT * FROM combinations',
factor => 0.5
);
start_vid | end_vid | agg_cost
-----------+---------+----------
5 | 6 | 1
5 | 10 | 6
6 | 5 | 1
6 | 15 | 4
(4 rows)
参数¶
列 |
类型 |
描述 |
---|---|---|
|
Edges SQL 如下所述 |
|
|
Combinations SQL 如下所述 |
|
start vid |
|
路径起始顶点的标识符。 |
start vids |
|
起始顶点的标识符数组。 |
end vid |
|
路径结束顶点的标识符。 |
end vids |
|
结束顶点的标识符数组。 |
可选参数¶
列 |
类型 |
默认 |
描述 |
---|---|---|---|
|
|
|
|
aStar 可选参数¶
参数 |
类型 |
默认 |
描述 |
---|---|---|---|
|
|
5 |
Heuristic 数字。当前有效值0~5。
|
|
|
|
对于单位操作。 \(factor > 0\)。 |
|
|
|
对于限制较少的结果。 \(epsilon >= 1\)。 |
查看可用的 heuristics 和 factor 处理。
内部查询¶
Edges SQL¶
参数 |
类型 |
默认 |
描述 |
---|---|---|---|
|
ANY-INTEGER |
边的标识符。 |
|
|
ANY-INTEGER |
边的第一个端点顶点的标识符。 |
|
|
ANY-INTEGER |
边的第二个端点顶点的标识符。 |
|
|
ANY-NUMERICAL |
边(
|
|
|
ANY-NUMERICAL |
-1 |
边 (
|
|
ANY-NUMERICAL |
|
|
|
ANY-NUMERICAL |
|
|
|
ANY-NUMERICAL |
|
|
|
ANY-NUMERICAL |
|
其中:
- ANY-INTEGER:
SMALLINT
,INTEGER
,BIGINT
- ANY-NUMERICAL:
SMALLINT
,INTEGER
,BIGINT
,REAL
,FLOAT
分量 SQL¶
参数 |
类型 |
描述 |
---|---|---|
|
ANY-INTEGER |
出发顶点的标识符。 |
|
ANY-INTEGER |
到达顶点的标识符。 |
其中:
- ANY-INTEGER:
SMALLINT
,INTEGER
,BIGINT
结果列¶
(start_vid, end_vid, agg_cost)
的集合
列 |
类型 |
描述 |
---|---|---|
|
|
起始顶点的标识符。 |
|
|
结束顶点的标识符。 |
|
|
从 |
其他示例¶
- 示例1:
演示中重复的值被忽略,且结果被排序。
SELECT * FROM pgr_bdAstarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2
FROM edges',
ARRAY[7, 10, 15, 10, 10, 15], ARRAY[10, 7, 10, 15]);
start_vid | end_vid | agg_cost
-----------+---------+----------
7 | 10 | 4
7 | 15 | 3
10 | 7 | 2
10 | 15 | 3
15 | 7 | 3
15 | 10 | 1
(6 rows)
- 示例2:
使 start vids 与 end vids 相同。
SELECT * FROM pgr_bdAstarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2
FROM edges',
ARRAY[7, 10, 15], ARRAY[7, 10, 15]);
start_vid | end_vid | agg_cost
-----------+---------+----------
7 | 10 | 4
7 | 15 | 3
10 | 7 | 2
10 | 15 | 3
15 | 7 | 3
15 | 10 | 1
(6 rows)
- 示例3:
手动指定的顶点组合。
SELECT * FROM pgr_bdAstarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2
FROM edges',
'SELECT * FROM (VALUES (6, 10), (6, 7), (12, 10)) AS combinations (source, target)');
start_vid | end_vid | agg_cost
-----------+---------+----------
6 | 7 | 1
6 | 10 | 5
12 | 10 | 4
(3 rows)
另请参阅¶
索引和表格