Base Network
The key steps involved in the base network process in EMME, includes;
- Imports and Initial Setup - Imports necessary modules and functions and defines the BaseNetwork class.
- Sets up scenario and Emmebank tools - set up the scenario and imports all the Modeller tools.
- Building Base Network (build_base_network method) - steps included;
- Checks if the current time period is the first time period.
- Calls build_base_scenario or copy_base_scenario based on the time period.
- Imports transit lanes if the model type is not ‘timetable’.
- Building Base Scenario (build_base_scenario method) - steps included;
- Creates a new scenario in EMME.
- Deletes any existing placeholder scenarios.
- Imports various network elements (modes, vehicles, centroids, nodes, connectors, links, functions).
- Builds and imports extra attributes.
- Imports corridor attributes and publishes the network.
- Copying Base Scenario (copy_base_scenario method) - steps included;
- Copies an existing scenario to create a new base network scenario.
- Import Base Network Elements - imports network elements from the sqlite database including;
- import_modes: Imports modes from the database.
- import_vehicles: Imports vehicles from the database.
- import_centroids: Imports centroids from the database.
- import_nodes: Imports regular nodes from the database.
- import_connectors: Imports connectors from the database.
- import_links: Imports links and link vertices from the database.
- import_functions: Imports functions from the database.
- import_corridor_attributes: Imports corridor attributes from the database.
- import_transit_lanes: Imports transit lanes for the current scenario.
- create_series_attributes: Creates series attributes for the scenario (for timetable model only).
- import_base_network_attributes: Imports base network attributes for links and nodes.
Transit Network
The key steps involved in the transit network process in EMME, includes;
- Building Transit Network - The build_transit_network method constructs the transit network based on the model type (Frequency, Timetable, or Olympics). It handles importing transit lines, setting attributes, and configuring transit time functions.
- Deleting Transit Network - The delete_transit_network method deletes any existing transit network within the EMME scenario.
- Importing Lines and Headways - The import_lines_files method imports transit line files into EMME. The import_headways method imports headway data for transit lines.
- Converting Timetable Times - The convert_timetable_times method adjusts timetable times by subtracting 180 minutes (to artifically reflect a 3am to 3am time window for a timetable model only).
- Importing Transit Attributes - The import_transit_attributes method imports and sets various transit line and stop attributes from a database.
- Splitting Transit Times - The split_transit_times method splits transit times into intermediate segments using specified attributes.
- Setting Transit Time Functions - The set_transit_time_functions method sets up transit time functions based on data from a database.
- Using Auto Times for Bus Lines - The use_auto_times_for_bus_lines method adjusts bus line times based on auto travel times.
- Setting Crowded Assignment Values - The set_crowded_assignment_values method imports and sets additional attributes for crowded transit assignments.