Ottenere più percorsi brevi con PgRouting in una query?


12

Voglio eseguire l'algoritmo del percorso più breve su più coppie sorgente e target contemporaneamente e ottenere un risultato come tabella e quindi elaborarlo.

Come faccio a fare questo? Questa query non funziona:

SELECT a.source, a.target, paths.* 
FROM all_to_all a, shortest_path_astar('...', a.source, a.target, false, false) paths;

ERROR:  function expression in FROM cannot refer to other relations of same query level

(a proposito, all_to_all non significa letteralmente tutto per tutti :) è solo un numero di coppie casuali)

Questo non funziona neanche:

SELECT * 
FROM all_to_all a, (
   SELECT * FROM shortest_path_astar('...', a.source, a.target, false, false) yyy
) AS t2;

---- Potresti ampliare per favore su questo? ho lo stesso problema ma non riesco a ottenere queste coppie, giusto? (da una tentata modifica del post]
Mapperz

Risposte:


13

Qualcosa di simile a

SELECT 
  source, 
  target,
  (SELECT SUM(cost) FROM  -- or whatever you want to do with the routing result
     (SELECT * FROM shortest_path_astar('...',
       source,
       target,
       false,
       false)
     ) AS foo 
  ) AS cost
FROM all_to_all;

4

Ecco una query che restituisce tutti i segmenti per tutte le combinazioni sorgente-destinazione:

SELECT
    source,
    target,
    shortest_path_astar('SELECT gid AS id, length AS cost, * FROM ways', source, target, false, false) AS segment
FROM
    all_to_all

Incredibile, incompatibile con la sintassi SQL, ma funziona!

source | target | segment
-------+--------+----------------
     1 |      4 | (1, 2, 0.1357)
     1 |      4 | (2, 3, 0.2468)
     1 |      4 | (3, 4, 0.9)
     1 |      4 | (4, -1, 0)
other sources & targets here
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.