Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[sumo-user] DFRouter Disallow Edges Issue
  • From: "Evans, Barry" <B.Evans@xxxxxxxxxxxx>
  • Date: Mon, 12 Aug 2019 12:30:42 +0000
  • Accept-language: en-GB, en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=exeter.ac.uk; dmarc=pass action=none header.from=exeter.ac.uk; dkim=pass header.d=exeter.ac.uk; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=1fWjpHAw4ebOccReGuVarSUUgmwJPf1aF8WWjglwYAU=; b=C8vNWOXYIRuqEW0PcNjbo2SUQZt5ChJIxDXKP5uTSF/9MialPofNV9fIXFgixwSmFAPN4XvymiHrhiR52lxJc2t+J5SDufFUrdDMMC3lJkOOJ0YjtrnHJZVW22IbnBfgH/kYt5Cf9fPYsQhzxyXlM/iticBhPx3eBprQuQXyCyeH2POoizpHZKUsoDi9tiC/URTbey+0AZRG/aMX9rSsWCXfvMv3XDTY7GfVmIfkGaPUSckDMQQFBmh7uBBBw0LUhX+KQ7SfRkvLfcuyP/ZgtPStxi4F2Bc4qwbq1OalsZJbcHxFZNfjq4yVqja5rfLWLH/NxVeyUwWbT2IrID4uHw==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=ATqF+gQkeyBeTip62flk7Tjhnc4V2PIqDoqf0nIPk3Xzm7C46W3TagStDdbfkKEQfHSzTxZs3ovHfnPQYSOH8qC2UboShKSSaRIMjrq08+NIklzWEYuPw9EbqHNKHLs/iobeh4GHQPQjQzXmRk2qdXVKa4JDdx4UDNcI187j88EFqB+Gdz9MCLE1rHnxZqUtDMEXZchPEjUkndVLcKoHQpJn+oNP3WUckoREWNkf6DvjIGJV6Zj4EsNxXxElBwUjXxiI5+dzom0CEBfqboVJrwcOB3U+HDkxbOaNfTh/iRVQKKPNqu5EA6gnAfnyhk01BpeYlOdlWlnCvTqPhSFk7Q==
  • Delivered-to: sumo-user@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/sumo-user>
  • List-help: <mailto:sumo-user-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/sumo-user>, <mailto:sumo-user-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/sumo-user>, <mailto:sumo-user-request@eclipse.org?subject=unsubscribe>
  • Thread-index: AdVRCa8IEUhnvpaWSbeunYI0jjVeaw==
  • Thread-topic: DFRouter Disallow Edges Issue

Hi all,

 

I have another question about DFRouter. I am now able to generate flows within my network but I have noticed that some of the routes generated try to route cars (my default vehicle type) along cycle lanes. As they cannot move across these lanes the traffic prior to these locations gets stuck. I have tried setting the “disallowed-edges” option but I’ve noticed the following:

 

If I disallow one edge such as with the following line in my config file:

 

<disallowed-edges value="194003839#0"/>

 

DFrouter will prevent that edge being used when creating the routes which is great. However, if I try to disallow more than one edge like as shown below:

 

<disallowed-edges value="194003839#0 166522670#1"/>

 

None of the edges are disallowed and DFRouter again generates routes that try to routes along both of these cycle lanes.

 

Is there a way to prevent DFRouter from creating routes that travel along these lanes? Below is a copy of my full config file for reference.

 

Any help would be greatly appreciated.

 

Kind regards

 

Barry

 

<?xml version="1.0" encoding="iso-8859-1"?>

 

<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.sf.net/xsd/sumoConfiguration.xsd">

 

                <input>

                                <net-file value="MyRoads.net.xml"/>

                                <detector-files value="NewDetectorsV2.det.xml"/>

                                <measure-files value="MyDetectorFlow.csv"/>

                </input>

 

                <output>

                                <emitters-output value="NewEmitters.xml"/>

                                <routes-for-all value="true"/>

                                <routes-output  value="Newroutes.rou.xml"/>

                </output>

 

                <processing>

                                <guess-empty-flows value="true"/>

                                <revalidate-routes value="true"/>

                                <disallowed-edges value="194003839#0 166522670#1"/>

                </processing>

 

</configuration>


Back to the top