# Node description of the St Marin underground area of Spindizzy Muck by
# Amy of Spindizzy Muck, 2018.  Use as you please.
#
# Used to generate an image and an HTML imagemap via Graphviz.
# Both a .png file and a .map file (HTML <map>) can be generated in one step:
#
#	dot -Tcmapx -oug.map -Tpng -oug.png ug.gv
#
digraph underground {
	graph [ layout = neato ];
	graph[size="8.5,4.5", ratio=fill];
	node [shape=box];

	subgraph watkins {
#		node [ style="filled", color="green" ];
		bloterr [ pos="0.5,1.5!" ]
		unro [ pos="0,1.75!" ]
		mer [ pos="1,2!", label="Merchant Square\n(Business/Residence)" ];
		stva [ pos="1,1.5!", label="Steamfall Vaults\n(Residences)" ];
	}


	unro [ label="Underglen Roads\n(Surface Access)", style="diagonals" ];
	bepg [ label="Beneath Priestly Gardens\n(Surface Access)",
		pos="1,0.5!", style="diagonals" ];
	bloterr [ label="Blooming Terraces", pos="0.5,1!" ];
	marterr [ pos="0,0.5!", label="Market Terraces" ];
	for [ label="Forest", pos="0.5,0!" ];

	bloterr -> bepg [label="cav" ];
	for -> bepg [ label="walk" ];
	marterr -> bepg [ label="cav" ];

	for -> marterr;

	bloterr -> marterr;

	unro -> bloterr [label="bepg" ];

	# unro -> bepg [label="urno/sen" ];
	unro -> mer;
	unro -> stva;

}
