1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
CREATE TABLE routing (gid serial, length integer, source integer, target integer, reverse_cost integer);
INSERT INTO routing (length, source, target, reverse_cost) VALUES
(10000, 1, 2, 10000),
(5, 3, 1, 5),
(10, 4, 3, 10),
(10, 2, 4, 10);
SELECT pgr_trsp(
'SELECT gid as id, source::int4, target::int4, length::float8 as cost, length::float8 as reverse_cost FROM routing',
1, 0.1, 1, 0.9, false, true
);
|