Replies: 1 comment 4 replies
|
Sorry, this was intended to be posted under Mea culpa. |
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Graph layout makes edges the same distance even though edges have different LQI ... making graph layout a bit unnatural (symmetric and not respecting that distances between nodes vary):

I tried making distances between edges proportional with LQI and out of the box (in the first run) got a graph which topology was almost perfectly matching the physical layout of my network:

What worked for me the best was LQI of 3,2,1,0 mapping into graph node distances of 100,190,270,340 (increments of 90, 80, 70).
I used the average of both directions for each edge and added an extra stage of penalty for single-linked nodes.
I'd propose considering improving graph layout by using this trick (my example was vibe-coded).
All reactions