pgr_aStarCost
— Devuelve el costo agregado de la ruta más corta usando el algoritmo pgr_aStar .
Disponibilidad
Soporte
Las características principales son:
directed
.directed
se configura a «true».start_vid
(si existe)end_vid
agg_cost
de \(v\) a \(u\) es \(\infty\)agg_cost
de v a u es \(0\)Resumen
pgr_aStarCost(edges_sql, from_vid, to_vid [, directed] [, heuristic] [, factor] [, epsilon])
pgr_aStarCost(edges_sql, from_vid, to_vids [, directed] [, heuristic] [, factor] [, epsilon])
pgr_aStarCost(edges_sql, from_vids, to_vid [, directed] [, heuristic] [, factor] [, epsilon])
pgr_aStarCost(edges_sql, from_vids, to_vids [, directed] [, heuristic] [, factor] [, epsilon])
RETURNS SET OF (start_vid, end_vid, agg_cost)
OR EMPTY SET
Los parámetros opcionales son parámetros con nombre y tienen un valor predeterminado.
Uso de valores predeterminados
pgr_aStarCost(edges_sql, start_vid, end_vid)
RETURNS SET OF (start_vid, end_vid, agg_cost)
OR EMPTY SET
Ejemplo: | Del vértice \(2\) al vértice \(12\) en un grafo dirigido |
---|
SELECT * FROM pgr_aStarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2 FROM edge_table',
2, 12);
start_vid | end_vid | agg_cost
-----------+---------+----------
2 | 12 | 4
(1 row)
pgr_aStarCost(edges_sql, from_vid, to_vid [, directed] [, heuristic] [, factor] [, epsilon])
RETURNS SET OF (start_vid, end_vid, agg_cost)
OR EMPTY SET
Ejemplo: | De vértice \(2\) a vértice \(12\) en un grafo no dirigido usando la heurística \(2\) |
---|
SELECT * FROM pgr_aStarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2 FROM edge_table',
2, 12,
directed := false, heuristic := 2);
start_vid | end_vid | agg_cost
-----------+---------+----------
2 | 12 | 4
(1 row)
pgr_aStarCost(edges_sql, from_vid, to_vids [, directed] [, heuristic] [, factor] [, epsilon])
RETURNS SET OF (start_vid, end_vid, agg_cost)
OR EMPTY SET
Ejemplo: | Desde el vértice \(2\) a los vértices \(\{3, 12\}\) en un grafo dirigido usando la heurística \(2\) |
---|
SELECT * FROM pgr_aStarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2 FROM edge_table',
2, ARRAY[3, 12], heuristic := 2);
start_vid | end_vid | agg_cost
-----------+---------+----------
2 | 3 | 5
2 | 12 | 4
(2 rows)
pgr_aStarCost(edges_sql, from_vids, to_vid [, directed] [, heuristic] [, factor] [, epsilon])
RETURNS SET OF (start_vid, end_vid, agg_cost)
OR EMPTY SET
Ejemplo: | De los vértices \(\{7, 2\}\) al vértice \(12\) en un grafo dirigido usando la heurística \(0\) |
---|
SELECT * FROM pgr_aStarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2 FROM edge_table',
ARRAY[7, 2], 12, heuristic := 0);
start_vid | end_vid | agg_cost
-----------+---------+----------
2 | 12 | 4
7 | 12 | 5
(2 rows)
pgr_aStarCost(edges_sql, from_vids, to_vids [, directed] [, heuristic] [, factor] [, epsilon])
RETURNS SET OF (start_vid, end_vid, agg_cost)
OR EMPTY SET
Ejemplo: | De los vértices \(\{7, 2\}\) a los vértices \(\{3, 12\}\) en un gráfico dirigido usando la heurística \(2\) |
---|
SELECT * FROM pgr_aStarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2 FROM edge_table',
ARRAY[7, 2], ARRAY[3, 12], heuristic := 2);
start_vid | end_vid | agg_cost
-----------+---------+----------
2 | 3 | 5
2 | 12 | 4
7 | 3 | 6
7 | 12 | 5
(4 rows)
Parámetro | Tipo | Descripción |
---|---|---|
edges_sql | TEXT |
edges_sql consulta interna. |
from_vid | ANY-INTEGER |
Identificador de vértice inicial. Parámetro en: |
from_vids | ARRAY[ANY-INTEGER] |
Arreglo de identificadores de vértices iniciales. Parámetro en: |
to_vid | ANY-INTEGER |
Identificador de vértice final. Parámetro en: |
to_vids | ARRAY[ANY-INTEGER] |
Matriz de identificadores de vértices finales. Parámetro en: |
Parámetro | Tipo | Valores predeterminados | Descripción |
---|---|---|---|
dirigido | BOOLEAN |
true |
|
heuristic | INTEGER |
5 |
Número heurístico. Valores actuales válidos 0~5. Default
|
factor | FLOAT |
1 |
Para la manipulación de unidades. math:factor > 0. Ver Factor |
epsilon | FLOAT |
1 |
Para resultados menos restringidos. \(epsilon >= 1\). |
edges_sql: | Una consulta SQL, que debe regresar un conjunto de filas con las siguientes columnas: |
---|
Columna | Tipo | Valores predeterminados | Descripción |
---|---|---|---|
id | ANY-INTEGER |
Identificador de la arista. | |
origen | ANY-INTEGER |
Identificador del primer punto final en el vértice de la arista. | |
objetivo | ANY-INTEGER |
Identificador del segundo punto final en el vértice de la arista. | |
cost | ANY-NUMERICAL |
Peso de la arista (source, target)
|
|
reverse_cost | ANY-NUMERICAL |
-1 | Peso de la arista (target, source),
|
x1 | ANY-NUMERICAL |
Coordenada X del vértice source. | |
y1 | ANY-NUMERICAL |
Coordenada Y del vértice source. | |
x2 | ANY-NUMERICAL |
Coordenada X del vértice objetivo. | |
y2 | ANY-NUMERICAL |
Coordenada Y del vértice target. |
Donde:
ANY-INTEGER: | SMALLINT, INTEGER, BIGINT |
---|---|
ANY-NUMERICAL: | SMALLINT, INTEGER, BIGINT, REAL, FLOAT |
Devuelve SET OF (start_vid, end_vid, agg_cost)
Columna | Tipo | Descripción |
---|---|---|
start_vid | BIGINT |
Identificador del vértice inicial. Se utiliza cuando hay varias vetrices iniciales en la consulta. |
end_vid | BIGINT |
Identificador del vértice final. Se utiliza cuando hay varios vértices finales en la consulta. |
agg_cost | FLOAT |
Coste agregado de start_vid a end_vid . |
Índices y tablas