How is this calculated?
The math continuously tracks how strongly this post is connected to the rest of the network. Every tag forms a 2-way link. The base stats determine personal node strength, and the pie charts below show this node's share against its direct neighbours.
// 1. Base variables (floored at 1 to prevent zero-multiplication math errors)
$inbound = max(1, 2) = 2
$outbound = max(1, 2) = 2
// 2. Node Base Values (Local connection strength)
Base_Strength (PV) = $inbound * $outbound = 2 * 2 = 4
Base_Influence (IV) = $inbound / $outbound = 2 / 2 = 1
// 3. Exponential Network Values (accumulating 23 direct neighbours)
Network_Strength (CV) = Base_PV * (Neighbour_1_PV * Neighbour_2_PV * ...)
= 4 *
( 2 [Stanwell, Queensland] *
12 [Byfield, Queensland] *
210 [Rockhampton Region] *
4 [Central Queensland] *
4 [Alton Downs, Queensland] *
4 [Bajool, Queensland] *
1 [Baree, Queensland] *
4 [Fairy Bower, Queensland] *
1 [Gogango, Queensland] *
4 [Morinish, Queensland] *
1 [Nine Mile, Queensland] *
4 [Port Alma, Queensland] *
4 [Quest Rockhampton] *
9 [Rockhampton City, Queensland] *
1 [Alligator Creek] *
49 [Mount Morgan] *
1 [Coronation Lamp War Memorial] *
1 [Dams in Mount Morgan] *
1 [Mount Morgan Cemetery] *
1 [Mount Morgan railway station] *
1 [Number 7 Dam] *
1 [Streets in Mount Morgan] *
1 [Sacred Heart Roman Catholic Church, Mount Morgan]
)
= 145.66B
Network_Influence (TV) = Base_IV * (Neighbour_1_IV * Neighbour_2_IV * ...)
= 1 *
( 2 [Stanwell, Queensland] *
1.33 [Byfield, Queensland] *
1.07 [Rockhampton Region] *
1 [Central Queensland] *
1 [Alton Downs, Queensland] *
1 [Bajool, Queensland] *
1 [Baree, Queensland] *
1 [Fairy Bower, Queensland] *
1 [Gogango, Queensland] *
1 [Morinish, Queensland] *
1 [Nine Mile, Queensland] *
1 [Port Alma, Queensland] *
1 [Quest Rockhampton] *
1 [Rockhampton City, Queensland] *
1 [Alligator Creek] *
1 [Mount Morgan] *
1 [Coronation Lamp War Memorial] *
1 [Dams in Mount Morgan] *
1 [Mount Morgan Cemetery] *
1 [Mount Morgan railway station] *
1 [Number 7 Dam] *
1 [Streets in Mount Morgan] *
1 [Sacred Heart Roman Catholic Church, Mount Morgan]
)
= 2.86