This project focuses on proposing methods and techniques to address inefficiencies in global transportation network design. By studying various network distance measures, we implemented Python-based analyses to evaluate their performance across different transportation datasets.
Dr. Philip Knight – University of Strathclyde
Oumarou Moussa Bola
This repository includes materials related to our analysis of transportation networks. Specifically, it contains one of six Jupyter notebooks that focus on the Paris dataset. The structure of this notebook is similar to the other five in the project.
Inside this repository, you will find:
- Jupyter Notebook: The Python implementation for analyzing the Paris transportation network.
- Dataset: The Paris Network dataset used in our study.
- Generated Images: Visualizations from previous simulations.
Transportation networks often lack optimal efficiency, leading to increased travel costs, congestion, and environmental impacts like CO₂ emissions. The goal of this study is to explore network distance metrics and develop strategies to optimize these networks, making them more cost-effective and sustainable.
The communicability function measures how effectively information or movement propagates between nodes in a network. It is computed using the spectral decomposition of the adjacency matrix A:
where A, associated with the eigenvalue 
The communicability distance metric is then defined as:
where p and q.
Proof that Communicability Distance is Euclidean:
Using the spectral decomposition of A, we rewrite 
Thus, the communicability distance satisfies:
where 
To address inefficiencies in transportation networks, we introduce a hybrid metric that incorporates:
- Traditional shortest-path distance ($d_{pq}$ )
- CO₂ emissions per trip ( $d_{CO_2}(p, q)$ )
- Communicability distance ($C_{pq}$ )
The hybrid distance is defined as:
where α, β, γ are tunable parameters that allow for balancing the contributions of cost, environmental impact, and network efficiency.
Proof that 
- 
Non-negativity: $$H_{pq} \geq 0, \quad \text{since} \quad d_{pq} \geq 0, \quad d_{CO_2}(p, q) \geq 0, \quad C_{pq} \geq 0.$$ 
- 
Symmetry: $$H_{pq} = H_{qp}, \quad \text{since all terms are symmetric.}$$ 
- 
Triangle Inequality: $$H_{pq} \leq H_{pw} + H_{wq}, \quad \forall p, q, w \in V.$$ 
Thus, 
To improve transportation network efficiency, a rewiring strategy was developed. The goal is to adjust the network structure by:
- Modifying connections to balance communicability and shortest paths.
- Ensuring connectivity while optimizing travel efficiency.
The rewiring process follows:
- Compute communicability and shortest-path distributions.
- Identify regions with inefficient connectivity.
- Adjust edges to improve balance while maintaining network integrity.
Our primary objective is to explore and develop techniques that improve the efficiency of transportation networks. Key findings from our analysis include:
- Network Distance Metrics: We analyzed various distance measures to assess their effectiveness in identifying well-connected hubs and areas that require improved connectivity.
- Resistance Metric: Demonstrated effectiveness in detecting both well-connected hubs and regions needing better integration.
- Hybrid Metric: Showed that adjusting the balance between travel cost, environmental impact, and network efficiency can yield optimized transportation routes.
- Rewiring Strategy: Successfully modified network structures to enhance connectivity while reducing inefficiencies.
For more information, feel free to reach out: 📧 [email protected]