mirror of
https://github.com/Ahp06/SUMO_Emissions.git
synced 2024-11-22 03:26:30 +00:00
Put logger into config.py
This commit is contained in:
parent
e25a952500
commit
20a1c11628
@ -5,6 +5,7 @@ Global configuration for the simulation
|
|||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import datetime
|
import datetime
|
||||||
|
import logging
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
############################# SIMULATION FILE #################################
|
############################# SIMULATION FILE #################################
|
||||||
@ -22,13 +23,25 @@ sumo_binary = os.path.join(os.environ['SUMO_HOME'], 'bin', _SUMOCMD)
|
|||||||
sumo_cmd = [sumo_binary, "-c", _SUMOCFG]
|
sumo_cmd = [sumo_binary, "-c", _SUMOCFG]
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
############################# LOGS OUTPUT #####################################
|
################################## LOGS #######################################
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
now = datetime.datetime.now()
|
now = datetime.datetime.now()
|
||||||
current_date = now.strftime("%Y_%m_%d_%H_%M_%S")
|
current_date = now.strftime("%Y_%m_%d_%H_%M_%S")
|
||||||
LOG_FILENAME = f'sumo_logs_{current_date}.log'
|
LOG_FILENAME = f'sumo_logs_{current_date}.log'
|
||||||
|
|
||||||
|
# create logger
|
||||||
|
logger = logging.getLogger("sumo_logger")
|
||||||
|
logger.setLevel(logging.INFO)
|
||||||
|
# create console handler and set level to info
|
||||||
|
handler = logging.FileHandler(LOG_FILENAME)
|
||||||
|
# create formatter
|
||||||
|
formatter = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s")
|
||||||
|
# add formatter to handler
|
||||||
|
handler.setFormatter(formatter)
|
||||||
|
# add handler to logger
|
||||||
|
logger.addHandler(handler)
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
########################## SIMULATION CONFIGURATION ###########################
|
########################## SIMULATION CONFIGURATION ###########################
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
from typing import List
|
from typing import List
|
||||||
|
|
||||||
import traci
|
import traci
|
||||||
import logging
|
|
||||||
import time
|
import time
|
||||||
|
|
||||||
from shapely.geometry import LineString
|
from shapely.geometry import LineString
|
||||||
from parse import *
|
from parse import search
|
||||||
|
|
||||||
import actions
|
import actions
|
||||||
import config
|
import config
|
||||||
@ -13,18 +12,7 @@ import sys
|
|||||||
from model import Area, Vehicle, Lane , TrafficLight , Phase , Logic
|
from model import Area, Vehicle, Lane , TrafficLight , Phase , Logic
|
||||||
from traci import trafficlight
|
from traci import trafficlight
|
||||||
|
|
||||||
# create logger
|
logger = config.logger
|
||||||
logger = logging.getLogger("sumo_logger")
|
|
||||||
logger.setLevel(logging.INFO)
|
|
||||||
# create console handler and set level to info
|
|
||||||
handler = logging.FileHandler(config.LOG_FILENAME)
|
|
||||||
# create formatter
|
|
||||||
formatter = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s")
|
|
||||||
# add formatter to handler
|
|
||||||
handler.setFormatter(formatter)
|
|
||||||
# add handler to logger
|
|
||||||
logger.addHandler(handler)
|
|
||||||
|
|
||||||
|
|
||||||
def init_grid(simulation_bounds, cells_number):
|
def init_grid(simulation_bounds, cells_number):
|
||||||
grid = list()
|
grid = list()
|
||||||
@ -101,12 +89,12 @@ def get_emissions(grid: List[Area], vehicles: List[Vehicle]):
|
|||||||
if area.emissions > config.EMISSIONS_THRESHOLD:
|
if area.emissions > config.EMISSIONS_THRESHOLD:
|
||||||
|
|
||||||
if config.limit_speed_mode and not area.limited_speed:
|
if config.limit_speed_mode and not area.limited_speed:
|
||||||
logger.info(f'Action - Decrease of max speed into {area.name} by {config.speed_rf*100}%')
|
logger.info(f'Action - Decreased max speed into {area.name} by {config.speed_rf*100}%')
|
||||||
actions.limit_speed_into_area(area, vehicles, config.speed_rf)
|
actions.limit_speed_into_area(area, vehicles, config.speed_rf)
|
||||||
traci.polygon.setColor(area.name, (255, 0, 0))
|
traci.polygon.setColor(area.name, (255, 0, 0))
|
||||||
traci.polygon.setFilled(area.name, True)
|
traci.polygon.setFilled(area.name, True)
|
||||||
if config.adjust_traffic_light_mode and not area.tls_adjusted:
|
if config.adjust_traffic_light_mode and not area.tls_adjusted:
|
||||||
logger.info(f'Action - Decrease of traffic lights duration by {config.trafficLights_duration_rf*100}%')
|
logger.info(f'Action - Decreased traffic lights duration by {config.trafficLights_duration_rf*100}%')
|
||||||
actions.adjust_traffic_light_phase_duration(area, config.trafficLights_duration_rf)
|
actions.adjust_traffic_light_phase_duration(area, config.trafficLights_duration_rf)
|
||||||
|
|
||||||
if config.lock_area_mode and not area.locked:
|
if config.lock_area_mode and not area.locked:
|
||||||
|
Loading…
Reference in New Issue
Block a user