Effective distance closeness centrality (EDCC) is a variant of classical closeness centrality in which the shortest-path distance between nodes is replaced by the effective distance [2]. The effective distance \(D_{j|i}\) from node \(i\) to a directly connected node \(j\) is defined as [3]:
\[
D_{j|i} = 1 - \log_2 \left( \frac{a_{ij}}{di} \right),
\]
where \(a_{ij}\) is the adjacency matrix entry for the edge \((i,j)\) and \(d_i\) is the degree of node \(i\).
The effective shortest-path distance \(\tilde{d}_{ij}\) between nodes \(i\) and \(j\) is then computed as the shortest path in a weighted graph where the weight of each edge \((i,j)\) is given by \(D_{j|i}\). Finally, the EDCC of node \(i\) is defined as
\[
c_{EDCC}(i) = \left( \sum_{j=1}^{N} \tilde{d}_{ij} \right)^{-1}.
\]
Hence, effective distance closeness centrality generalizes closeness centrality by incorporating edge weights that account for heterogeneous connectivity patterns, rather than treating all direct links as equivalent.

References

[1] Shvydun, S. (2025). Zoo of Centralities: Encyclopedia of Node Metrics in Complex Networks. arXiv: 2511.05122 https://doi.org/10.48550/arXiv.2511.05122
[2] Du, Y., Gao, C., Chen, X., Hu, Y., Sadiq, R., & Deng, Y. (2015). A new closeness centrality measure via effective distance in complex networks. Chaos: An Interdisciplinary Journal of Nonlinear Science, 25(3). doi: 10.1063/1.4916215.
[3] Brockmann, D., & Helbing, D. (2013). The hidden geometry of complex, network-driven contagion phenomena. science, 342(6164), 1337-1342. doi: 10.1126/science.1245200.