Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [sumo-user] Question related to Intersection

The config you provided is not the same config that you used to start your traci simulation (the output file that you sent earlier, indicates that some options such as 'fcd-output' and 'vehroute-output.exit-times' were not given when starting your traci simulation)

Note, that
- the option vehroute-output.exit-times is a boolean option (it does not require a file name argument)
- using spaces in output file names will complicate post-processing since some sumo tools assume that lists of file names are separated by spaces and this will require additional quotation marks to clear ambiguities
- using the file name suffix '.xml' is recommended for all sumo output files since many tools use these endings when deciding how to interpret a file (and all these files are xml files)


Am Mi., 28. Sept. 2022 um 07:26 Uhr schrieb Sona S <ms.sona.12@xxxxxxxxx>:
<?xml version="1.0" encoding="UTF-8"?>

<!-- generated on 2022-09-20 17:54:30 by Eclipse SUMO GUI Version 1.14.1
-->

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

<input>
        <net-file value="vehiget.net.xml"/>
        <route-files value="vehiget.rou.xml"/>
</input>
<gui-settings-file value="gui-settings.cfg"/>
<output>
<!-- <netstate-dump value="lt outpt1 gt" /> -->
<!-- <emission-output value="lt emivalue gt" /> -->
<netstate-dump.precision value ="It netprecision gt" />
<vehroutes value="lt vehirout gt" />
<!-- vehroute-output vehroutes.xml /> -->
<vehroute-output.exit-times value="lt exit time gt" />
<fcd-output value="lt fcd gt"/>
</output>
</configuration>

Thanks for your reply.



On Mon, Sep 26, 2022 at 6:15 PM Jakob Erdmann <namdre.sumo@xxxxxxxxx> wrote:
post the command-line you used for starting sumo and the contents of the .sumocfg file (if any).

Am Mo., 26. Sept. 2022 um 11:58 Uhr schrieb Sona S <ms.sona.12@xxxxxxxxx>:
Hi Jacob,
I have tried "vehiroute-exit-times" to get the value when a vehicle leaves an edge. But the output file is not showing the values.  I want to know the arrival and departure time of a vehicle at the intersection area including the time it spent in the intersection area. I have attached the output file herewith for reference. 

Regards,
Sona

On Fri, Sep 23, 2022 at 12:22 PM Sona S <ms.sona.12@xxxxxxxxx> wrote:
Hi Jacob,
I have tried "vehiroute-exit-times" to get the value when a vehicle leaves an edge. But the output file is not showing the values.  I want to know the arrival and departure time of a vehicle at the intersection area including the time it spent in the intersection area. I have attached the output file herewith for reference. 

Regards,
Sona

On Wed, Sep 21, 2022 at 3:20 PM Sona S <ms.sona.12@xxxxxxxxx> wrote:
Thank you, Jacob, for your reply.

On Tue, Sep 20, 2022 at 1:58 PM Jakob Erdmann <namdre.sumo@xxxxxxxxx> wrote:
The options starting with -- are meant for the commandline. In a config file it looks like <vehroute-output.exit-times value="true"/>

Am Mo., 19. Sept. 2022 um 13:31 Uhr schrieb Sona S <ms.sona.12@xxxxxxxxx>:
Thanks for reply.
I want arrival/departure time of each vehicle when it is moving on lane and also in the intersection area. So basically I want time when it enters and leaves lane as well as intersection area. How to do that?

Do I need to write "--vehroute-output.exit-times, vehroute-output.internal" in configuration file as output ?

Regards,
Sona

On Mon, Sep 19, 2022 at 12:50 PM Jakob Erdmann <namdre.sumo@xxxxxxxxx> wrote:
The easiest solution is to log the edges that the vehicle is on (traci.vehicle.get RoadID) and trigger on leaving edge before the intersection / entering beyond the intersection.
If you need sub-step timing data you can use traci.inductionloop.getVehicleData for appropriately placed detectors.

Note, that the latest development version also supports xml outputs for this (--vehroute-output.exit-times, vehroute-output.internal).

Am So., 18. Sept. 2022 um 13:18 Uhr schrieb Sona S <ms.sona.12@xxxxxxxxx>:
Hi everyone,
        I wanted to know the arrival time and departure time of each vehicle at the intersection using python. Can anyone help me to get the values of that?

Regards,
Sona
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user
_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user

Back to the top