Что ж, ваш if len(Veh_attributes) > 0:
терпит неудачу и, следовательно, Veh_C2X_attributes
не определен.
Один из способов убедиться в этом - ввести print
в if len(Veh_attributes) > 0:
, чтобы проверить, выполняется ли это условие.
Также лучшей практикой было бы определение Veh_C2X_attributes
раньше.
Например:
def Main():
# Get several attributes of all vehicles:
Veh_C2X_attributes = [] # this will prevent code from failing
Veh_attributes = Vissim.Net.Vehicles.GetMultipleAttributes(('Pos', 'VehType', 'No'))
if len(Veh_attributes) > 0: # Check if there are any vehicles in the network:
# Filter by VehType C2X:
Veh_C2X_attributes = [item for item in Veh_attributes if item[1] == Vehicle_Type_C2X_no_message or item[1] == Vehicle_Type_C2X_HasCurrentMessage] #Getting Error here
#Check if the Vehicle is in the range
for C2X_Veh in range(len(Veh_C2X_attributes)):
if Veh_C2X_attributes[C2X_Veh][0]==300:
Veh_sending_Msg = Vissim.Net.Vehicles.ItemByKey(Veh_C2X_attributes[C2X_Veh][3])
Coord_Veh = Veh_sending_Msg.AttValue('CoordFront') # reading the world coordinates (x y z) of the vehicle
PositionXYZ = Coord_Veh.split(" ")
Pos_Veh_SM = Veh_sending_Msg.AttValue('Pos') # relative position on the current link
Veh_sending_Msg.SetAttValue('C2X_HasCurrentMessage', 1)
Veh_sending_Msg.SetAttValue('C2X_SendingMessage', 1)
Veh_sending_Msg.SetAttValue('C2X_MessageOrigin', Pos_Veh_SM)
# Getting vehicles which receive the message:
Veh_Rec_Message = Vissim.Net.Vehicles.GetByLocation(PositionXYZ[0], PositionXYZ[1], distDistr)
return