I'm trying to draw map of some mud. I have used python and graphviz to get something like:
http://img23.imageshack.us/img23/5222/arrasz.png
As you can see we have some locations and going N/S/W/E/Up/Down we are going to other location.
Is it possible, with graphviz, to draw this map to have north locations up to south, and east locations on the right of west locations?
I mean like that:
some --- E ---> some
location <--- W --- location 2
.
/ \ |
| |
N S
| |
\ /
`
some location 3
Or maybe there is some better tool to draw it automatically than graphviz?
I think the subgraphs (see dotguide page 23) and the rank property (see dotguide page 17) might be methods to better organize the graph
The following might be an alternative to Graphviz:
http://gephi.org/ provides some python bindings the newer versions even supports python as a scripting language inside the app.
http://ubietylab.net/ubigraph/index.html produces nice 3D graphs and can be controlled via python