예제 #1
0
def setRouteID(vehID, routeID):
    """setRouteID(string, string) -> None

    Sets the id of the route for the named vehicle.
    """
    traci._sendStringCmd(
        tc.CMD_SET_VEHICLE_VARIABLE, tc.VAR_ROUTE_ID, vehID, routeID)
예제 #2
0
def setRouteID(vehID, routeID):
    """setRouteID(string, string) -> None

    Changes the vehicles route to the route with the given id.
    """
    traci._sendStringCmd(
        tc.CMD_SET_VEHICLE_VARIABLE, tc.VAR_ROUTE_ID, vehID, routeID)
예제 #3
0
def setShapeClass(typeID, clazz):
    """setShapeClass(string, string) -> None

    Sets the shape class of vehicles of this type. 
    """
    traci._sendStringCmd(
        tc.CMD_SET_VEHICLETYPE_VARIABLE, tc.VAR_SHAPECLASS, typeID, clazz)
예제 #4
0
def setRedYellowGreenState(tlsID, state):
    """setRedYellowGreenState(string, string) -> None

    Sets the named tl's state as a tuple of light definitions from rRgGyYoO, for red, green, yellow, off, where lower case letters mean that the stream has to decelerate.
    """
    traci._sendStringCmd(
        tc.CMD_SET_TL_VARIABLE, tc.TL_RED_YELLOW_GREEN_STATE, tlsID, state)
예제 #5
0
def setProgram(tlsID, programID):
    """setProgram(string, string) -> None

    Sets the id of the current program.
    """
    traci._sendStringCmd(
        tc.CMD_SET_TL_VARIABLE, tc.TL_PROGRAM, tlsID, programID)
예제 #6
0
파일: vehicle.py 프로젝트: sazl/SumoSimTest
def setRouteID(vehID, routeID):
    """setRouteID(string, string) -> None
    
    Sets the id of the route for the named vehicle.
    """
    traci._sendStringCmd(tc.CMD_SET_VEHICLE_VARIABLE, tc.VAR_ROUTE_ID, vehID,
                         routeID)
예제 #7
0
def setProgram(tlsID, programID):
    """setProgram(string, string) -> None
    
    Sets the id of the current program.
    """
    traci._sendStringCmd(tc.CMD_SET_TL_VARIABLE, tc.TL_PROGRAM, tlsID,
                         programID)
예제 #8
0
def setEmissionClass(typeID, clazz):
    """setEmissionClass(string, string) -> None

    Sets the emission class of vehicles of this type.
    """
    traci._sendStringCmd(
        tc.CMD_SET_VEHICLETYPE_VARIABLE, tc.VAR_EMISSIONCLASS, typeID, clazz)
예제 #9
0
파일: vehicle.py 프로젝트: sazl/SumoSimTest
def setShapeClass(vehID, clazz):
    """setShapeClass(string, string) -> None
    
    Sets the shape class for this vehicle.
    """
    traci._sendStringCmd(tc.CMD_SET_VEHICLE_VARIABLE, tc.VAR_SHAPECLASS, vehID,
                         clazz)
예제 #10
0
def setSchema(viewID, schemeName):
    """setSchema(string, string) -> None
    
    Set the current coloring scheme for the given view.
    """
    traci._sendStringCmd(tc.CMD_SET_GUI_VARIABLE, tc.VAR_VIEW_SCHEMA, viewID,
                         schemeName)
예제 #11
0
파일: gui.py 프로젝트: aarongolliver/sumo
def setSchema(viewID, schemeName):
    """setSchema(string, string) -> None

    Set the current coloring scheme for the given view.
    """
    traci._sendStringCmd(
        tc.CMD_SET_GUI_VARIABLE, tc.VAR_VIEW_SCHEMA, viewID, schemeName)
예제 #12
0
파일: vehicle.py 프로젝트: sazl/SumoSimTest
def setEmissionClass(vehID, clazz):
    """setEmissionClass(string, string) -> None
    
    Sets the emission class for this vehicle.
    """
    traci._sendStringCmd(tc.CMD_SET_VEHICLE_VARIABLE, tc.VAR_EMISSIONCLASS,
                         vehID, clazz)
예제 #13
0
파일: vehicle.py 프로젝트: sazl/SumoSimTest
def setType(vehID, typeID):
    """setType(string, string) -> None
    
    Sets the id of the type for the named vehicle.
    """
    traci._sendStringCmd(tc.CMD_SET_VEHICLE_VARIABLE, tc.VAR_TYPE, vehID,
                         typeID)
예제 #14
0
def setEmissionClass(typeID, clazz):
    """setEmissionClass(string, string) -> None

    Sets the emission class of vehicles of this type.
    """
    traci._sendStringCmd(tc.CMD_SET_VEHICLETYPE_VARIABLE, tc.VAR_EMISSIONCLASS,
                         typeID, clazz)
예제 #15
0
def trackVehicle(viewID, vehID):
    """trackVehicle(string, string) -> None
    
    Start visually tracking the given vehicle on the given view.
    """
    traci._sendStringCmd(tc.CMD_SET_GUI_VARIABLE, tc.VAR_TRACK_VEHICLE, viewID,
                         vehID)
예제 #16
0
def setShapeClass(vehID, clazz):
    """setShapeClass(string, string) -> None

    Sets the shape class for this vehicle.
    """
    traci._sendStringCmd(
        tc.CMD_SET_VEHICLE_VARIABLE, tc.VAR_SHAPECLASS, vehID, clazz)
예제 #17
0
def setShapeClass(typeID, clazz):
    """setShapeClass(string, string) -> None

    Sets the shape class of vehicles of this type. 
    """
    traci._sendStringCmd(tc.CMD_SET_VEHICLETYPE_VARIABLE, tc.VAR_SHAPECLASS,
                         typeID, clazz)
예제 #18
0
def setEmissionClass(vehID, clazz):
    """setEmissionClass(string, string) -> None

    Sets the emission class for this vehicle.
    """
    traci._sendStringCmd(
        tc.CMD_SET_VEHICLE_VARIABLE, tc.VAR_EMISSIONCLASS, vehID, clazz)
예제 #19
0
def setRouteID(vehID, routeID):
    """setRouteID(string, string) -> None

    Changes the vehicles route to the route with the given id.
    """
    traci._sendStringCmd(
        tc.CMD_SET_VEHICLE_VARIABLE, tc.VAR_ROUTE_ID, vehID, routeID)
예제 #20
0
def setType(vehID, typeID):
    """setType(string, string) -> None

    Sets the id of the type for the named vehicle.
    """
    traci._sendStringCmd(
        tc.CMD_SET_VEHICLE_VARIABLE, tc.VAR_TYPE, vehID, typeID)
예제 #21
0
파일: gui.py 프로젝트: aarongolliver/sumo
def trackVehicle(viewID, vehID):
    """trackVehicle(string, string) -> None

    Start visually tracking the given vehicle on the given view.
    """
    traci._sendStringCmd(
        tc.CMD_SET_GUI_VARIABLE, tc.VAR_TRACK_VEHICLE, viewID, vehID)
예제 #22
0
def setRedYellowGreenState(tlsID, state):
    """setRedYellowGreenState(string, string) -> None
    
    Sets the named tl's state as a tuple of light definitions from rRgGyYoO, for red, green, yellow, off, where lower case letters mean that the stream has to decelerate.
    """
    traci._sendStringCmd(tc.CMD_SET_TL_VARIABLE, tc.TL_RED_YELLOW_GREEN_STATE,
                         tlsID, state)
예제 #23
0
def screenshot(viewID, filename):
    """screenshot(string, string) -> None
    
    Save a screenshot for the given view to the given filename.
    The fileformat is guessed from the extension, the available 
    formats differ from platform to platform but should at least
    include ps, svg and pdf, on linux probably gif, png and jpg as well.
    """
    traci._sendStringCmd(tc.CMD_SET_GUI_VARIABLE, tc.VAR_SCREENSHOT, viewID, filename)
예제 #24
0
파일: gui.py 프로젝트: cathyyul/sumo-0.18
def screenshot(viewID, filename):
    """screenshot(string, string) -> None
    
    Save a screenshot for the given view to the given filename.
    The fileformat is guessed from the extension, the available 
    formats differ from platform to platform but should at least
    include ps, svg and pdf, on linux probably gif, png and jpg as well.
    """
    traci._sendStringCmd(tc.CMD_SET_GUI_VARIABLE, tc.VAR_SCREENSHOT, viewID, filename)
예제 #25
0
파일: vehicle.py 프로젝트: sazl/SumoSimTest
def changeTarget(vehID, edgeID):
    traci._sendStringCmd(tc.CMD_SET_VEHICLE_VARIABLE, tc.CMD_CHANGETARGET,
                         vehID, edgeID)
예제 #26
0
파일: vehicle.py 프로젝트: p1tt1/sumo
def changeTarget(vehID, edgeID):
    traci._sendStringCmd(tc.CMD_SET_VEHICLE_VARIABLE, tc.CMD_CHANGETARGET, vehID, edgeID)
예제 #27
0
def setRouteID(vehID, routeID):
    traci._sendStringCmd(tc.CMD_SET_VEHICLE_VARIABLE, tc.VAR_ROUTE_ID, vehID, routeID)
예제 #28
0
def setVehicleClass(vehID, clazz):
    traci._sendStringCmd(tc.CMD_SET_VEHICLE_VARIABLE, tc.VAR_VEHICLECLASS, vehID, clazz)
def setEmissionClass(typeID, clazz):
    traci._sendStringCmd(tc.CMD_SET_VEHICLETYPE_VARIABLE, tc.VAR_EMISSIONCLASS, typeID, clazz)
def setProgram(tlsID, programID):
    traci._sendStringCmd(tc.CMD_SET_TL_VARIABLE, tc.TL_PROGRAM, tlsID, programID)
예제 #31
0
def setProgram(tlsID, programID):
    traci._sendStringCmd(tc.CMD_SET_TL_VARIABLE, tc.TL_PROGRAM, tlsID, programID)
def setRedYellowGreenState(tlsID, state):
    traci._sendStringCmd(tc.CMD_SET_TL_VARIABLE, tc.TL_RED_YELLOW_GREEN_STATE, tlsID, state)
예제 #33
0
def setEmissionClass(typeID, clazz):
    traci._sendStringCmd(tc.CMD_SET_VEHICLETYPE_VARIABLE, tc.VAR_EMISSIONCLASS, typeID, clazz)
예제 #34
0
def setShapeClass(typeID, clazz):
    traci._sendStringCmd(tc.CMD_SET_VEHICLETYPE_VARIABLE, tc.VAR_SHAPECLASS, typeID, clazz)
def setShapeClass(typeID, clazz):
    traci._sendStringCmd(tc.CMD_SET_VEHICLETYPE_VARIABLE, tc.VAR_SHAPECLASS, typeID, clazz)
예제 #36
0
def setRedYellowGreenState(tlsID, state):
    traci._sendStringCmd(tc.CMD_SET_TL_VARIABLE, tc.TL_RED_YELLOW_GREEN_STATE, tlsID, state)