I have got a list of nodes and each node has got a weight. This weight represents the distance from one node to another and it is directed.
Is it possible to generate a map similar to a game graph where each of these nodes contains a 2D or 3D position (or maybe a multidimensional)?
Similar to this map: https://i.stack.imgur.com/ElV6e.png
Or this but including positions: http://www.nature.com/srep/2012/120608/srep00444/images/srep00444-f8.jpg
My data set will be similar to this:
Node Cost ConnectsTo
A 1 B, C
B 2 D
C 3 E
D 4 E
E 5