sir i want to solve the problem based on my scenario..When i generate the
output file, the output i received is not exactly that i want.
I want the vehicle id come in sequence like this (0,1,2,3,4,5,6,7,8......).
But i received the file like this(0,3,4,5,6,8,9...)...
Can u please help me..
Regards
Anshul Mahajan

On Wed, Jan 11, 2017 at 12:29 PM, <[email protected]>
wrote:

> Send sumo-user mailing list submissions to
>         [email protected]
>
> To subscribe or unsubscribe via the World Wide Web, visit
>         https://lists.sourceforge.net/lists/listinfo/sumo-user
> or, via email, send a message with subject or body 'help' to
>         [email protected]
>
> You can reach the person managing the list at
>         [email protected]
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of sumo-user digest..."
>
>
> Today's Topics:
>
>    1. Re: Warning: Vehicle '53' skips stop on lane      '25301895_0'
>       time=471.00 (Green Mind)
>    2. Re: Warning: Vehicle '53' skips stop on lane '25301895_0'
>       time=471.00 (sumo.mahei)
>    3. Convert XY position to LonLat (Nam Nguyen)
>    4. About estimating travel time from road speed limit (Li Yan)
>    5. Re: sumo-user Digest, Vol 126, Issue 6 (Anshul Mahajan)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Tue, 10 Jan 2017 15:39:50 +0200
> From: Green Mind <[email protected]>
> Subject: Re: [sumo-user] Warning: Vehicle '53' skips stop on lane
>         '25301895_0' time=471.00
> To: Jakob Erdmann <[email protected]>
> Cc: sumo-user <[email protected]>
> Message-ID:
>         <CAAhsJE2pYY4T0mdoGUbP_dqY4V=X_DtbTqZXahnLJY=F1EFCRQ@mail.
> gmail.com>
> Content-Type: text/plain; charset=UTF-8
>
> Jakob,
>
> Thanks for the answer.
>
> In this case, what is the difference between this error I sometimes I get
> in my python script:
> *traci.exceptions.TraCIException: Stop for vehicle '69' on lane
> '-36948252_0' is too close to break.*
>
> and this warning I get on Sumo log (and the python script is unaware of,
> except for the vehicle disappearing)?
> *Warning: Vehicle '53' skips stop on lane '25301895_0' time=471.00*
>
> Are they both caused by the same reason? (not enough space to break before
> the end of the lane)? What would cause one over the other?
>
> On Tue, Jan 10, 2017 at 11:15 AM, Jakob Erdmann <
> [email protected]>
> wrote:
>
> > Hello,
> > this behavior arises when the vehicle cannot stop in time because the
> > remaining route is quite short and the vehicle is too fast.
> > I recommend you observe this particular vehicle in the gui and track its
> > speed for confirmation.
> > To avoid this you can ensure a minimum route length or increase the
> > permitted deceleration.
> >
> > regards,
> > Jakob
> >
> >
> >
> > 2017-01-10 5:38 GMT+01:00 Li Yan <[email protected]>:
> >
> >> I encountered the same problem before. It is because the vehicles in
> SUMO
> >> must always have a route to follow. Otherwise, they will subscribe to
> the
> >> arrived vehicle list after reaching the dest specified in setStop() and
> >> disappear. Hint: use traci.vehicle.isStopped(vehID) to judge whether the
> >> vehicle has stopped, update the route as long as isStopped returns True.
> >>
> >> Best regards,
> >> Li
> >>
> >>
> >> -----Original Message-----
> >> From: Green Mind [mailto:[email protected]]
> >> Sent: Monday, January 09, 2017 3:21 PM
> >> To: SUMO Users
> >> Subject: [sumo-user] Warning: Vehicle '53' skips stop on lane
> '25301895_0'
> >> time=471.00
> >>
> >> I use traci to set a route to a vehicle (the route contains about 5
> edge),
> >> and then make it stop on the middle of the last edge:
> >>
> >> *    traci.vehicle.setRoute(vehicle_id, edges)*
> >>
> >> *    # stop in the middle of the street*
> >> *    loc = graph.getEdge(dest).getLength() / 2.0*
> >> *    traci.vehicle.setStop(vehicle_id, dest, pos=loc) *
> >>
> >> After doing this successfully about 100 times with different vehicles
> and
> >> different routes, I get this error:
> >>
> >> *Warning: Vehicle '53' skips stop on lane '25301895_0' time=471.00*
> >>
> >> And the vehicle dissapears from the map.
> >>
> >> This reproduces all the time with this specific vehicle and route.
> >>
> >> I will add that this is a part of a script that controls many vehicles
> and
> >> sends them in many different routes - the only problem seem to be with
> >> this
> >> specific vehicle and this specific route+stop combination, but I have no
> >> idea what could cause it. Everything looks normal.
> >>
> >> Any ideas?
> >> ------------------------------------------------------------
> >> ----------------
> >> --
> >> Developer Access Program for Intel Xeon Phi Processors Access to Intel
> >> Xeon
> >> Phi processor-based developer platforms.
> >> With one year of Intel Parallel Studio XE.
> >> Training and support from Colfax.
> >> Order your platform today. http://sdm.link/xeonphi
> >> _______________________________________________
> >> sumo-user mailing list
> >> [email protected]
> >> https://lists.sourceforge.net/lists/listinfo/sumo-user
> >>
> >>
> >> ------------------------------------------------------------
> >> ------------------
> >> Developer Access Program for Intel Xeon Phi Processors
> >> Access to Intel Xeon Phi processor-based developer platforms.
> >> With one year of Intel Parallel Studio XE.
> >> Training and support from Colfax.
> >> Order your platform today. http://sdm.link/xeonphi
> >> _______________________________________________
> >> sumo-user mailing list
> >> [email protected]
> >> https://lists.sourceforge.net/lists/listinfo/sumo-user
> >>
> >
> >
>
>
> ------------------------------
>
> Message: 2
> Date: Tue, 10 Jan 2017 15:00:26 +0100
> From: "sumo.mahei" <[email protected]>
> Subject: Re: [sumo-user] Warning: Vehicle '53' skips stop on lane
>         '25301895_0' time=471.00
> To: Green Mind <[email protected]>,
>         [email protected]
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset=windows-1252; format=flowed
>
> Hi
>
> Am 10.01.2017 um 14:39 schrieb Green Mind:
> > Jakob,
> >
> > Thanks for the answer.
> >
> > In this case, what is the difference between this error I sometimes I get
> > in my python script:
> > *traci.exceptions.TraCIException: Stop for vehicle '69' on lane
> > '-36948252_0' is too close to break.*
> -> this could happen if you insert vehicle too
> close to an intersection where its urged to break
> but the given speed is too big.
> > and this warning I get on Sumo log (and the python script is unaware of,
> > except for the vehicle disappearing)?
> > *Warning: Vehicle '53' skips stop on lane '25301895_0' time=471.00*
> -> you may try to get the stop state each step via traci (eg.
> subscriptions) - to detect such events - still a sticky solution*:
> Once the vehicle finishes or aborts its __last__
> stop traci.vehicle.getStop() will return 0 and the
> vehicle will complete its route. After arriving the end
> of the final route the vehicle will be removed from the net.
>
> -> The error can also emerge when moving around stopped vehicles but
> this might not be your use case here.
>
> * @DLR-Team: maybe it would be an enhancement to get the
> sumo warnings via traci as well.
> > Are they both caused by the same reason? (not enough space to break
> before
> > the end of the lane)? What would cause one over the other?
> >
> > On Tue, Jan 10, 2017 at 11:15 AM, Jakob Erdmann <
> [email protected]>
> > wrote:
> >
> >> Hello,
> >> this behavior arises when the vehicle cannot stop in time because the
> >> remaining route is quite short and the vehicle is too fast.
> >> I recommend you observe this particular vehicle in the gui and track its
> >> speed for confirmation.
> >> To avoid this you can ensure a minimum route length or increase the
> >> permitted deceleration.
> >>
> >> regards,
> >> Jakob
> >>
> >>
> >>
> >> 2017-01-10 5:38 GMT+01:00 Li Yan <[email protected]>:
> >>
> >>> I encountered the same problem before. It is because the vehicles in
> SUMO
> >>> must always have a route to follow. Otherwise, they will subscribe to
> the
> >>> arrived vehicle list after reaching the dest specified in setStop() and
> >>> disappear. Hint: use traci.vehicle.isStopped(vehID) to judge whether
> the
> >>> vehicle has stopped, update the route as long as isStopped returns
> True.
> >>>
> >>> Best regards,
> >>> Li
> >>>
> >>>
> >>> -----Original Message-----
> >>> From: Green Mind [mailto:[email protected]]
> >>> Sent: Monday, January 09, 2017 3:21 PM
> >>> To: SUMO Users
> >>> Subject: [sumo-user] Warning: Vehicle '53' skips stop on lane
> '25301895_0'
> >>> time=471.00
> >>>
> >>> I use traci to set a route to a vehicle (the route contains about 5
> edge),
> >>> and then make it stop on the middle of the last edge:
> >>>
> >>> *    traci.vehicle.setRoute(vehicle_id, edges)*
> >>>
> >>> *    # stop in the middle of the street*
> >>> *    loc = graph.getEdge(dest).getLength() / 2.0*
> >>> *    traci.vehicle.setStop(vehicle_id, dest, pos=loc) *
> >>>
> >>> After doing this successfully about 100 times with different vehicles
> and
> >>> different routes, I get this error:
> >>>
> >>> *Warning: Vehicle '53' skips stop on lane '25301895_0' time=471.00*
> >>>
> >>> And the vehicle dissapears from the map.
> >>>
> >>> This reproduces all the time with this specific vehicle and route.
> >>>
> >>> I will add that this is a part of a script that controls many vehicles
> and
> >>> sends them in many different routes - the only problem seem to be with
> >>> this
> >>> specific vehicle and this specific route+stop combination, but I have
> no
> >>> idea what could cause it. Everything looks normal.
> >>>
> >>> Any ideas?
> >>> ------------------------------------------------------------
> >>> ----------------
> >>> --
> >>> Developer Access Program for Intel Xeon Phi Processors Access to Intel
> >>> Xeon
> >>> Phi processor-based developer platforms.
> >>> With one year of Intel Parallel Studio XE.
> >>> Training and support from Colfax.
> >>> Order your platform today. http://sdm.link/xeonphi
> >>> _______________________________________________
> >>> sumo-user mailing list
> >>> [email protected]
> >>> https://lists.sourceforge.net/lists/listinfo/sumo-user
> >>>
> >>>
> >>> ------------------------------------------------------------
> >>> ------------------
> >>> Developer Access Program for Intel Xeon Phi Processors
> >>> Access to Intel Xeon Phi processor-based developer platforms.
> >>> With one year of Intel Parallel Studio XE.
> >>> Training and support from Colfax.
> >>> Order your platform today. http://sdm.link/xeonphi
> >>> _______________________________________________
> >>> sumo-user mailing list
> >>> [email protected]
> >>> https://lists.sourceforge.net/lists/listinfo/sumo-user
> >>>
> >>
> > ------------------------------------------------------------
> ------------------
> > Developer Access Program for Intel Xeon Phi Processors
> > Access to Intel Xeon Phi processor-based developer platforms.
> > With one year of Intel Parallel Studio XE.
> > Training and support from Colfax.
> > Order your platform today. http://sdm.link/xeonphi
> > _______________________________________________
> > sumo-user mailing list
> > [email protected]
> > https://lists.sourceforge.net/lists/listinfo/sumo-user
> best Marek Heinrich
> simoserv GmbH
>
>
>
> ------------------------------
>
> Message: 3
> Date: Tue, 10 Jan 2017 14:03:42 +0000
> From: Nam Nguyen <[email protected]>
> Subject: [sumo-user] Convert XY position to LonLat
> To: "[email protected]"
>         <[email protected]>
> Message-ID:
>         <HE1PR0801MB1706B31FF2DC55C001B27B3EF7670@HE1PR0801MB1706.
> eurprd08.prod.outlook.com>
>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hi,
>
>
> I am trying to convert positions i get vom a ContextSubscription from
> POI's to LonLat position. my problem is that i cant use the command
> convert2D because the POIs are not on any edges so i tried using
> http://www.sumo.dlr.de/wiki/TraCI/Simulation_Value_
> Retrieval#Command_0x82:_Position_Conversion but i dont quite understand
> the parameter. what is the value type and what is the item number and why
> do i need 2?
>
> on the bottom right corner is the position given in XY and LonLat. can i
> retrieve the position in LonLat directly if i got a map from osm?
>
> thanks for your help
>
>
>
> best regards
>
> Nam
>
>
>
> ------------------------------
>
> Message: 4
> Date: Tue, 10 Jan 2017 19:35:02 -0500
> From: "Li Yan" <[email protected]>
> Subject: [sumo-user] About estimating travel time from road speed
>         limit
> To: <[email protected]>
> Message-ID: <[email protected]>
> Content-Type: text/plain;       charset="us-ascii"
>
> Dear SUMO contributors,
>
>
>
> Is there any way to estimate the travel time from origin to destination by
> the speed limit of the edges in the route? For example,
> traci.simulation.getDistanceRoad() returns the distance of the shortest
> route between two positions. I wish to estimate the travel time for driving
> this route.
>
>
>
> I've tried adding a function similar to SUMOReal MSRoute::getTimeBetween()
> in MSRoute.cpp. The only difference is the distance of each edge is divided
> by its speed limit (edge->getSpeedLimit()), which is expected to return the
> travel time of this edge. But the returned result is the same with SUMOReal
> MSRoute::getDistanceBetween(), which means the speed limits of all the
> edges
> are 1?
>
>
>
> If I'm modifying the source code in the wrong way (I'm not sure whether
> edge->getSpeedLimit() is the right way to get the speed limit of an edge),
> please give me some hint. Or please show me if there are other neat ways to
> finish this job. Thanks a lot!
>
>
>
> Best regards,
>
> Li
>
>
>
> Li Yan, Ph.D. candidate
>
> Department of Computer Science
>
> University of Virginia
>
> Personal website:  <http://www.people.virginia.edu/~ly4ss/>
> http://www.people.virginia.edu/~ly4ss/
>
>
>
>
>
> ------------------------------
>
> Message: 5
> Date: Wed, 11 Jan 2017 12:29:05 +0530
> From: Anshul Mahajan <[email protected]>
> Subject: Re: [sumo-user] sumo-user Digest, Vol 126, Issue 6
> To: [email protected]
> Message-ID:
>         <CA+4dODa1=JOGbR+oxAiE3kqh-Z1anMmm7b_A5yCW1AueJYZHhw@
> mail.gmail.com>
> Content-Type: text/plain; charset=UTF-8
>
> sir i want to solve the problem comes in my network scenario that is when i
> got the sumoTrace.xml file . The vehicle id is not in sequence like
> this(0,1,2,3,4,5,6,7,8,9,10....).
> so please help me to solve this.
>
>
> On Tue, Jan 10, 2017 at 7:04 PM, <[email protected]>
> wrote:
>
> > Send sumo-user mailing list submissions to
> >         [email protected]
> >
> > To subscribe or unsubscribe via the World Wide Web, visit
> >         https://lists.sourceforge.net/lists/listinfo/sumo-user
> > or, via email, send a message with subject or body 'help' to
> >         [email protected]
> >
> > You can reach the person managing the list at
> >         [email protected]
> >
> > When replying, please edit your Subject line so it is more specific
> > than "Re: Contents of sumo-user digest..."
> >
> >
> > Today's Topics:
> >
> >    1. Warning: Vehicle '53' skips stop on lane '25301895_0'
> >       time=471.00 (Green Mind)
> >    2. Re: Warning: Vehicle '53' skips stop on lane      '25301895_0'
> >       time=471.00 (Li Yan)
> >    3. Re: About the model for electric vehicles (Jakob Erdmann)
> >    4. Re: Warning: Vehicle '53' skips stop on lane      '25301895_0'
> >       time=471.00 (Jakob Erdmann)
> >    5. Subject About deceleration method (????)
> >    6. Sending vehicle specific messages from RSU (sai nithin)
> >
> >
> > ----------------------------------------------------------------------
> >
> > Message: 1
> > Date: Mon, 9 Jan 2017 22:20:41 +0200
> > From: Green Mind <[email protected]>
> > Subject: [sumo-user] Warning: Vehicle '53' skips stop on lane
> >         '25301895_0'    time=471.00
> > To: SUMO Users <[email protected]>
> > Message-ID:
> >         <CAAhsJE0pRptiHdQnQyOwhgi+ne=bt=7BFS0wcPP=L1YvJPXUYA@mail.
> > gmail.com>
> > Content-Type: text/plain; charset=UTF-8
> >
> > I use traci to set a route to a vehicle (the route contains about 5
> edge),
> > and then make it stop on the middle of the last edge:
> >
> > *    traci.vehicle.setRoute(vehicle_id, edges)*
> >
> > *    # stop in the middle of the street*
> > *    loc = graph.getEdge(dest).getLength() / 2.0*
> > *    traci.vehicle.setStop(vehicle_id, dest, pos=loc) *
> >
> > After doing this successfully about 100 times with different vehicles and
> > different routes, I get this error:
> >
> > *Warning: Vehicle '53' skips stop on lane '25301895_0' time=471.00*
> >
> > And the vehicle dissapears from the map.
> >
> > This reproduces all the time with this specific vehicle and route.
> >
> > I will add that this is a part of a script that controls many vehicles
> and
> > sends them in many different routes - the only problem seem to be with
> this
> > specific vehicle and this specific route+stop combination, but I have no
> > idea what could cause it. Everything looks normal.
> >
> > Any ideas?
> >
> >
> > ------------------------------
> >
> > Message: 2
> > Date: Mon, 9 Jan 2017 23:38:54 -0500
> > From: "Li Yan" <[email protected]>
> > Subject: Re: [sumo-user] Warning: Vehicle '53' skips stop on lane
> >         '25301895_0' time=471.00
> > To: "'Green Mind'" <[email protected]>
> > Cc: [email protected]
> > Message-ID: <[email protected]>
> > Content-Type: text/plain;       charset="us-ascii"
> >
> > I encountered the same problem before. It is because the vehicles in SUMO
> > must always have a route to follow. Otherwise, they will subscribe to the
> > arrived vehicle list after reaching the dest specified in setStop() and
> > disappear. Hint: use traci.vehicle.isStopped(vehID) to judge whether the
> > vehicle has stopped, update the route as long as isStopped returns True.
> >
> > Best regards,
> > Li
> >
> >
> > -----Original Message-----
> > From: Green Mind [mailto:[email protected]]
> > Sent: Monday, January 09, 2017 3:21 PM
> > To: SUMO Users
> > Subject: [sumo-user] Warning: Vehicle '53' skips stop on lane
> '25301895_0'
> > time=471.00
> >
> > I use traci to set a route to a vehicle (the route contains about 5
> edge),
> > and then make it stop on the middle of the last edge:
> >
> > *    traci.vehicle.setRoute(vehicle_id, edges)*
> >
> > *    # stop in the middle of the street*
> > *    loc = graph.getEdge(dest).getLength() / 2.0*
> > *    traci.vehicle.setStop(vehicle_id, dest, pos=loc) *
> >
> > After doing this successfully about 100 times with different vehicles and
> > different routes, I get this error:
> >
> > *Warning: Vehicle '53' skips stop on lane '25301895_0' time=471.00*
> >
> > And the vehicle dissapears from the map.
> >
> > This reproduces all the time with this specific vehicle and route.
> >
> > I will add that this is a part of a script that controls many vehicles
> and
> > sends them in many different routes - the only problem seem to be with
> this
> > specific vehicle and this specific route+stop combination, but I have no
> > idea what could cause it. Everything looks normal.
> >
> > Any ideas?
> > ------------------------------------------------------------
> > ----------------
> > --
> > Developer Access Program for Intel Xeon Phi Processors Access to Intel
> Xeon
> > Phi processor-based developer platforms.
> > With one year of Intel Parallel Studio XE.
> > Training and support from Colfax.
> > Order your platform today. http://sdm.link/xeonphi
> > _______________________________________________
> > sumo-user mailing list
> > [email protected]
> > https://lists.sourceforge.net/lists/listinfo/sumo-user
> >
> >
> >
> >
> > ------------------------------
> >
> > Message: 3
> > Date: Tue, 10 Jan 2017 10:08:52 +0100
> > From: Jakob Erdmann <[email protected]>
> > Subject: Re: [sumo-user] About the model for electric vehicles
> > To: Li Yan <[email protected]>
> > Cc: sumo-user <[email protected]>
> > Message-ID:
> >         <CAMbUcbwbb88Lrd6a9ZUEuPA2JSw9gRUGSNVbC1VKqH+fnPYCbA@mail.
> > gmail.com>
> > Content-Type: text/plain; charset=UTF-8
> >
> > Hello,
> > unfortunately the battery model is not yet accessible in this way. We
> plan
> > to fix this for the next release (scheduled for February).
> > regards,
> > Jakob
> >
> > 2017-01-09 20:22 GMT+01:00 Li Yan <[email protected]>:
> >
> > > Dear SUMO contributors,
> > >
> > >
> > >
> > > I'm recently using the electric vehicle model included in SUMO 0.28.0,
> > but
> > > encountered some problems. First, I've defined the battery devices,
> etc.
> > in
> > > <vType> for each vehicle, and the positions of charging stations as
> > > specified in http://sumo.dlr.de/wiki/Models/Electric. Then, I want to
> > know
> > > the vehicles' electricity consumed in each step through
> > > traci.vehicle.getElectricityConsumption (vehID), but all vehicles
> return
> > > 0.
> > > However, the output file "battery.summary.xml" records the change of
> > > battery
> > > content, so the model is working. It seems the function
> > > traci.vehicle.getElectricityConsumption (vehID) is not actually
> working
> > > yet.
> > > Is there any way to dynamically access the vehicle battery status when
> > the
> > > simulation is running, or am I using it mistakenly?
> > >
> > >
> > >
> > > Thank you and wish you have a nice day!
> > >
> > >
> > >
> > > Best regards,
> > >
> > > Li
> > >
> > >
> > >
> > > Li Yan, Ph.D. candidate
> > >
> > > Department of Computer Science
> > >
> > > University of Virginia
> > >
> > > Personal website:  <http://www.people.virginia.edu/~ly4ss/>
> > > http://www.people.virginia.edu/~ly4ss/
> > >
> > >
> > >
> > > ------------------------------------------------------------
> > > ------------------
> > > Developer Access Program for Intel Xeon Phi Processors
> > > Access to Intel Xeon Phi processor-based developer platforms.
> > > With one year of Intel Parallel Studio XE.
> > > Training and support from Colfax.
> > > Order your platform today. http://sdm.link/xeonphi
> > > _______________________________________________
> > > sumo-user mailing list
> > > [email protected]
> > > https://lists.sourceforge.net/lists/listinfo/sumo-user
> > >
> >
> >
> > ------------------------------
> >
> > Message: 4
> > Date: Tue, 10 Jan 2017 10:15:06 +0100
> > From: Jakob Erdmann <[email protected]>
> > Subject: Re: [sumo-user] Warning: Vehicle '53' skips stop on lane
> >         '25301895_0' time=471.00
> > To: Li Yan <[email protected]>
> > Cc: sumo-user <[email protected]>
> > Message-ID:
> >         <CAMbUcbyD940+o5BEHb6bSxefQSGkx1YHJBvGa=tZoX
> > [email protected]>
> > Content-Type: text/plain; charset=UTF-8
> >
> > Hello,
> > this behavior arises when the vehicle cannot stop in time because the
> > remaining route is quite short and the vehicle is too fast.
> > I recommend you observe this particular vehicle in the gui and track its
> > speed for confirmation.
> > To avoid this you can ensure a minimum route length or increase the
> > permitted deceleration.
> >
> > regards,
> > Jakob
> >
> >
> >
> > 2017-01-10 5:38 GMT+01:00 Li Yan <[email protected]>:
> >
> > > I encountered the same problem before. It is because the vehicles in
> SUMO
> > > must always have a route to follow. Otherwise, they will subscribe to
> the
> > > arrived vehicle list after reaching the dest specified in setStop() and
> > > disappear. Hint: use traci.vehicle.isStopped(vehID) to judge whether
> the
> > > vehicle has stopped, update the route as long as isStopped returns
> True.
> > >
> > > Best regards,
> > > Li
> > >
> > >
> > > -----Original Message-----
> > > From: Green Mind [mailto:[email protected]]
> > > Sent: Monday, January 09, 2017 3:21 PM
> > > To: SUMO Users
> > > Subject: [sumo-user] Warning: Vehicle '53' skips stop on lane
> > '25301895_0'
> > > time=471.00
> > >
> > > I use traci to set a route to a vehicle (the route contains about 5
> > edge),
> > > and then make it stop on the middle of the last edge:
> > >
> > > *    traci.vehicle.setRoute(vehicle_id, edges)*
> > >
> > > *    # stop in the middle of the street*
> > > *    loc = graph.getEdge(dest).getLength() / 2.0*
> > > *    traci.vehicle.setStop(vehicle_id, dest, pos=loc) *
> > >
> > > After doing this successfully about 100 times with different vehicles
> and
> > > different routes, I get this error:
> > >
> > > *Warning: Vehicle '53' skips stop on lane '25301895_0' time=471.00*
> > >
> > > And the vehicle dissapears from the map.
> > >
> > > This reproduces all the time with this specific vehicle and route.
> > >
> > > I will add that this is a part of a script that controls many vehicles
> > and
> > > sends them in many different routes - the only problem seem to be with
> > this
> > > specific vehicle and this specific route+stop combination, but I have
> no
> > > idea what could cause it. Everything looks normal.
> > >
> > > Any ideas?
> > > ------------------------------------------------------------
> > > ----------------
> > > --
> > > Developer Access Program for Intel Xeon Phi Processors Access to Intel
> > Xeon
> > > Phi processor-based developer platforms.
> > > With one year of Intel Parallel Studio XE.
> > > Training and support from Colfax.
> > > Order your platform today. http://sdm.link/xeonphi
> > > _______________________________________________
> > > sumo-user mailing list
> > > [email protected]
> > > https://lists.sourceforge.net/lists/listinfo/sumo-user
> > >
> > >
> > > ------------------------------------------------------------
> > > ------------------
> > > Developer Access Program for Intel Xeon Phi Processors
> > > Access to Intel Xeon Phi processor-based developer platforms.
> > > With one year of Intel Parallel Studio XE.
> > > Training and support from Colfax.
> > > Order your platform today. http://sdm.link/xeonphi
> > > _______________________________________________
> > > sumo-user mailing list
> > > [email protected]
> > > https://lists.sourceforge.net/lists/listinfo/sumo-user
> > >
> >
> >
> > ------------------------------
> >
> > Message: 5
> > Date: Tue, 10 Jan 2017 19:03:20 +0900
> > From: ???? <[email protected]>
> > Subject: [sumo-user] Subject About deceleration method
> > To: [email protected]
> > Message-ID:
> >         <CAPWZEGtgZgvONnOTM8UWCKhe6zv3EKsO4fPZWSNawKbY7saxgw@mail.
> > gmail.com>
> > Content-Type: text/plain; charset=UTF-8
> >
> > My name is YosukeKato Chiba Institute of technology in student.
> > Sorry over the question many times
> >
> > Where are you sending the MSCFModel :: maximumSafeFollowSpeed value to
> > decelerate?
> >
> >
> >
> > ???????????????????????????
> >
> > Chiba Institute of tecnology
> >
> > Yohsuke Katoh
> >
> > [email protected]
> >
> > ???????????????????????????
> >
> > ------------------------------
> >
> > Message: 6
> > Date: Tue, 10 Jan 2017 19:04:07 +0530
> > From: sai nithin <[email protected]>
> > Subject: [sumo-user] Sending vehicle specific messages from RSU
> > To: [email protected]
> > Message-ID:
> >         <CAMPBbY3827oRChKD=YX1L_CcX7az3aS1RLR15iasTWLTx__O4Q@
> > mail.gmail.com>
> > Content-Type: text/plain; charset=UTF-8
> >
> > Hi all,
> >      Iam new to veins,omnet++.I am working on a scenario where RSU's have
> > to collect the vehicle's attributes like speed,lane,id ..etc of the
> > vehicles in its range and send some vehicle specific messages from
> RSU(like
> > change of route for a particular vehicle).
> >
> > How can i achieve this collecting the information of vehicles? How can i
> > send messages to a particular node in the simulation?
> >
> >
> > ------------------------------
> >
> > ------------------------------------------------------------
> > ------------------
> > Developer Access Program for Intel Xeon Phi Processors
> > Access to Intel Xeon Phi processor-based developer platforms.
> > With one year of Intel Parallel Studio XE.
> > Training and support from Colfax.
> > Order your platform today. http://sdm.link/xeonphi
> >
> > ------------------------------
> >
> > _______________________________________________
> > sumo-user mailing list
> > [email protected]
> > https://lists.sourceforge.net/lists/listinfo/sumo-user
> >
> >
> > End of sumo-user Digest, Vol 126, Issue 6
> > *****************************************
> >
>
>
>
> --
> Warm Regards
> Er. Anshul Mahajan
> Contact:9906027180
>
>
> ------------------------------
>
> ------------------------------------------------------------
> ------------------
> Developer Access Program for Intel Xeon Phi Processors
> Access to Intel Xeon Phi processor-based developer platforms.
> With one year of Intel Parallel Studio XE.
> Training and support from Colfax.
> Order your platform today. http://sdm.link/xeonphi
>
> ------------------------------
>
> _______________________________________________
> sumo-user mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/sumo-user
>
>
> End of sumo-user Digest, Vol 126, Issue 7
> *****************************************
>



-- 
Warm Regards
Er. Anshul Mahajan
Contact:9906027180
------------------------------------------------------------------------------
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi
_______________________________________________
sumo-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/sumo-user

Reply via email to