क्या ए * और दिज्क्स्त्र में प्रतिबंधों को जोड़ने का एक तरीका है?


11

वर्तमान में हम pgRout के साथ काम कर रहे हैं और पाया कि टर्न प्रतिबंधों को लागू करने का कोई तरीका नहीं है (उदाहरण के लिए दाएं या बाएं मोड़)। हालांकि शूटिंग * एल्गोरिथ्म में "to_cost" और "rule" को असाइन करना संभव है ... मुझे ए स्टार और डेजट्रैक एल्गोरिदम का उपयोग करके इन प्रतिबंधों को लागू करने का एक तरीका नहीं मिला।

क्या ए स्टार और डीजकस्ट्रा विधियों में विशेष मोड़ प्रतिबंधों को लागू करने का एक तरीका है?

जवाबों:


3

हां, हमने अभी एक टर्न प्रतिबंधित सबसे छोटा रास्ता (trsp) लागू किया है। मुझे लगता है कि इसे मूल / trsp पर एक git शाखा में जांचा गया है। यह अभी तक प्रलेखित नहीं है। यदि आपके पास प्रश्न या सूची में मदद करने की आवश्यकता है, तो क्योंकि मैं वहीं हैंगआउट करता हूं।

-स्टीव


1

क्या आप इसे देख रहे हैं?

7.2. Restricted access

Another possibility is to restrict access to roads of a certain type by either setting a very high cost for road links with a certain attribute or by not selecting certain road links at all:

UPDATE classes SET cost=100000 WHERE name LIKE 'motorway%';

Through subqueries you can mix your costs as you like and this will change the results of your routing request immediately. Cost changes will affect the next shortest path search, and there is no need to rebuild your network.

Of course certain road classes can be excluded in the WHERE clause of the query as well, for example exclude living_street class:

SELECT * FROM shortest_path_shooting_star(
        'SELECT gid as id, class_id, source, target, length*c.cost as cost,
                x1, y1, x2, y2, rule, to_cost, reverse_cost*c.cost as reverse_cost
        FROM ways w, classes c
        WHERE class_id=c.id AND class_id != 111', 6585, 8247, true, true);

Of course pgRouting allows you all kind of SQL that is possible with PostgreSQL/PostGIS.

यह कार्यशाला से एक टुकड़ा है।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.