traci._trafficlights
index
/home/delphi/sumo/tools/traci/_trafficlights.py

@file    _trafficlights.py
@author  Michael Behrisch
@date    2011-03-16
@version $Id: _trafficlights.py 26189 2017-09-22 11:38:45Z namdre $
 
Python implementation of the TraCI interface.
 
SUMO, Simulation of Urban MObility; see http://sumo.dlr.de/
Copyright (C) 2011-2017 DLR (http://www.dlr.de/) and contributors
 
This file is part of SUMO.
SUMO is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

 
Modules
       
struct
traci.constants

 
Classes
       
Logic
Phase
traci.domain.Domain
TrafficLightsDomain

 
class Logic
     Methods defined here:
__init__(self, subID, type, subParameter, currentPhaseIndex, phases)
__repr__(self)

 
class Phase
     Methods defined here:
__init__(self, duration, duration1, duration2, phaseDef)
__repr__(self)

 
class TrafficLightsDomain(traci.domain.Domain)
     Methods defined here:
__init__(self)
getCompleteRedYellowGreenDefinition(self, tlsID)
getCompleteRedYellowGreenDefinition(string) ->
 
.
getControlledLanes(self, tlsID)
getControlledLanes(string) -> c
 
Returns the list of lanes which are controlled by the named traffic light.
getControlledLinks(self, tlsID)
getControlledLinks(string) -> list(list(list(string)))
 
Returns the links controlled by the traffic light, sorted by the signal index and described by giving the incoming, outgoing, and via lane.
getNextSwitch(self, tlsID)
getNextSwitch(string) -> integer
 
.
getPhase(self, tlsID)
getPhase(string) -> integer
 
.
getPhaseDuration(self, tlsID)
getPhaseDuration(string) -> integer
 
.
getProgram(self, tlsID)
getProgram(string) -> string
 
Returns the id of the current program.
getRedYellowGreenState(self, tlsID)
getRedYellowGreenState(string) -> string
 
Returns the named tl's state as a tuple of light definitions from
rugGyYoO, for red, yed-yellow, green, yellow, off, where lower case letters mean that the stream has to decelerate.
setCompleteRedYellowGreenDefinition(self, tlsID, tls)
setCompleteRedYellowGreenDefinition(string, ) -> None
 
.
setLinkState(self, tlsID, tlsLinkIndex, state)
setLinkState(string, string, int, string) -> None
Sets the state for the given tls and link index. The state must be one
of rRgGyYoOu for red, red-yellow, green, yellow, off, where lower case letters mean that the stream has to decelerate.
The link index is shown the gui when setting the appropriate junctino
visualization optin.
setPhase(self, tlsID, index)
setPhase(string, integer) -> None
 
.
setPhaseDuration(self, tlsID, phaseDuration)
setPhaseDuration(string, integer or float) -> None
 
Set the phase duration of the current phase in seconds.
setProgram(self, tlsID, programID)
setProgram(string, string) -> None
 
Sets the id of the current program.
setRedYellowGreenState(self, tlsID, state)
setRedYellowGreenState(string, string) -> None
 
Sets the named tl's state as a tuple of light definitions from
rugGyYuoO, for red, red-yellow, green, yellow, off, where lower case letters mean that the stream has to decelerate.

Data and other attributes defined here:
Logic = <class traci._trafficlights.Logic>
Phase = <class traci._trafficlights.Phase>

Methods inherited from traci.domain.Domain:
getContextSubscriptionResults(self, objectID=None)
getIDCount(self)
getIDCount() -> integer
 
Returns the number of currently loaded objects.
getIDList(self)
getIDList() -> list(string)
 
Returns a list of all objects in the network.
getParameter(self, objID, param)
getParameter(string, string) -> string
 
Returns the value of the given parameter for the given objID
getSubscriptionResults(self, objectID=None)
getSubscriptionResults(string) -> dict(integer: <value_type>)
 
Returns the subscription results for the last time step and the given object.
If no object id is given, all subscription results are returned in a dict.
If the object id is unknown or the subscription did for any reason return no data,
'None' is returned.
It is not possible to retrieve older subscription results than the ones
from the last time step.
setParameter(self, objID, param, value)
setParameter(string, string, string) -> string
 
Sets the value of the given parameter to value for the given objID
subscribe(self, objectID, varIDs=None, begin=0, end=2147483647)
subscribe(string, list(integer), double, double) -> None
 
Subscribe to one or more object values for the given interval.
subscribeContext(self, objectID, domain, dist, varIDs=None, begin=0, end=2147483647)
subscribeContext(string, int, double, list(integer), double, double) -> None
 
Subscribe to objects of the given domain (specified as domain=traci.constants.CMD_GET_<DOMAIN>_VARIABLE),
which are closer than dist to the object specified by objectID.
unsubscribe(self, objectID)
unsubscribe(string) -> None
 
Unsubscribe from receiving object values.
unsubscribeContext(self, objectID, domain, dist)

 
Data
        absolute_import = _Feature((2, 5, 0, 'alpha', 1), (3, 0, 0, 'alpha', 0), 16384)