Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[sumo-user] lines for taxi device
  • From: Amanda Romano <amandaromano@xxxxxxxxxxx>
  • Date: Tue, 26 Oct 2021 18:33:10 +0000
  • Accept-language: pt-BR, en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=none; dmarc=none; dkim=none; 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=7obtZ2u6EJQ1mA70bTjAxNMYAEDQKW5ElHU7Pg3SyWM=; b=ILiTGEM8PibohjB3cHVtX7Wd5gw4KMZ1sCsYk0kyYyv0+Sc30UB6ClX8eYfY0/qZUaCMJhC9x9HA5xoJRKzQqQejXXURp4VorAdWSDCwVhaXtPbm7xyRZkP9Xk6zh6aJ+TTKUJpH7memBGAXGpsuiqWgF8/Pq78K6eN80AdYtnmFJSAlYoaVws9Vkg0+uGq1+CQarLx+EkzixQem3Q2hxPyY3ttU4KiMk7ht3I8PlQh7OxIykTLEK0KZL/TLWzVQTVn8Y0iKdg4aRw4owps7At2vFCATdoovHYNrf4GdI1W+V8CMUHyDmWFFgc9ucKJ54bfM1x8ZvcKZ5tYAPU81vQ==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=Dwm8PJXDytdaiqjRtm4M2GvhJ1oO21nKesrbTbgmcswKx8+znd6PemOH40a8I1QIblw/vBgBoYry4NPCz5VhQyyBNgywkEW+rl/olVPFeqUTimFXXpZT/tyEgrl19iPOPxnIrAKxngcKFjXaNhdwBsVDtzyZQjlujxL/CL4pdNm8SRP1KcsRkHqnU7iugrgygrT6aC1ip4eQsEX6bmdR37ye4GgHXadMd8tyaR1kWrUFh9vO9Wk4Ra4mhvXCSnOfZJ6meJyqxkjdWlfmZskrt+qR79zKos4ca5xxS3KMBtRokn1Ik7VTi2u+5345O9n81Gu9Z43De6CTKTu8WHKoHQ==
  • 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>
  • Suggested_attachment_session_id: 98376665-b3e3-12f9-a0be-7e3bb3fd9a6c
  • Thread-index: AQHXypacEZLNtZ/plEqRE47FTGh7Yw==
  • Thread-topic: lines for taxi device

Hello,
I'm doing a simulation that I have 3 types of taxis. 
Is it possible that people entering the simulation request a specific type of taxi?
For example, having more than one taxi line and the person requesting a specific one.

For example, I define these 3 taxis and person 1. But I would like the person to request taxi_1.

<vType id="taxi1"  vClass="taxi" color="red">
<param key="has.taxi.device" value="true"/>
</vType>
<vType id="taxi2"  vClass="taxi" color="blue">
<param key="has.taxi.device" value="true"/>
</vType>
<vType id="taxi3"  vClass="taxi"color="green">
<param key="has.taxi.device" value="true"/>
</vType>

<trip id="taxi_1" type="taxi1" depart="0" from="253394163#6" to="253394163#6" departLane="free" departSpeed="random">
 <stop lane="253394163#6_0" triggered="person"/>  
</trip>
<trip id="taxi_2" type="taxi2" depart="0" from="-681382507" to="-681382507" departLane="free" departSpeed="random">
 <stop lane="-681382507_0" triggered="person"/>  
</trip>
<trip id="taxi_3" type="taxi3" depart="0" from="-972187838" to="-972187838" departLane="free" departSpeed="random">
 <stop lane="-972187838_0" triggered="person"/>  
</trip>

<person id="1" depart="42.00">
<walk from="329676797#0" to="927260018"/>  
<ride from="253394163#6" to="915209391" lines="taxi"/>
</person>

Thanks.

Back to the top