Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[sumo-user] Lane specific weights for routing
  • From: Henri Grossmann <henri.grossmann@xxxxxxxxxxxxxxx>
  • Date: Thu, 29 Feb 2024 09:12:05 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=transcality.com; dmarc=pass action=none header.from=transcality.com; dkim=pass header.d=transcality.com; 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-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=mnk40Wm04Q9GlCNuYZK1vYxaN9NNFR5NCZ3z5Iy9LQM=; b=KBkswks0PR30UgCZo32yPZi8ArWjnYDnKv/avbRkFwaFOs1ICHz2mcJPYFGpxTwX/0s6GR2dK6sjC+qgydKAX6xvAQWuem50TyKBWZAyUJS6tCoI7PqhWTNGKK3o9wrae7FBTglrfIeBiJ8ryaWp79wMY5OweLChhZjQmE/7HoNr+/6olWAj8QcdHR3zoPZ5dfEumOlI6dsQTqftg4N73YrLMXEJblCsPwjky5C838iPs38RZuZEHg4p/rsyt6AFyC7iFWF/Uq4+0cE8cEYUDJdtJjTHq4nrj+1A075Vjf66rM/pOClOl3pautH/VUnhBPqtghUOzN692WanK7VKBw==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=IzRsHUEfC7LVQlZU/hardtYIEFh3kRBih/Qqv+4S1kyngkueXlB5olBR+bW05zVGRXNAbQlnda0IzC9aURHOYOW8VoXMypWLywSb++TfKHwIV57Les47shU85HPon+Ck/pxWDt90nA6OafPDUb33iT/x+4c0QsPcM+y7vU7s5YqQUtoTPxOF4gM9PLsZA7CvQiNFnRU8bJjrMFGZkaFW/YVleOg0bJ8wfziqQAjLP+WhT1ecKQekiJ1RnxnufTOvpcs1cqYZeci6J4DqWEtiypYWRT3cTQNymrFkMoyqZ7KzNLICHzlg4fQNWPk8RvQNE+HicTfRcolK6BThset0aQ==
  • 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: AQHaau9d+alWKmxlyU2kb2qnVQPLcg==
  • Thread-topic: Lane specific weights for routing

Dear everyone,

I'm interested in configuring lane-specific weights for routing. I've been able to successfully set up routing with edge weights using the following format.

<meandata> <interval begin="0" end="3600" id="whatever"> <edge id="edgeID1" traveltime="23"/> <edge id="edgeID2" traveltime="1000"/> </interval> </meandata>

However, when I attempt to incorporate lane-specific weights by adding lane IDs, the setup doesn't work anymore. Could you please advise on the proper way to set this up? According to the documentation which describes the input “--weight-files <FILE>”, loading edge/lane weights for online rerouting from FILE should be possible.

<meandata> <interval begin="0" end="3600" id="whatever"> <edge id="edgeID1"> <lane id=“laneID1" traveltime="1000"/> <lane id=“laneID2" traveltime=“800"/> </edge> </interval> </meandata>

Your help is highly appreciated.

Best,

Henri


Back to the top