bsize: number of grid points a station can move away rom its original position
Returns
new coordinates for stations
Details
The function optimizes the following five criteria using a hill climbing algorithm:
Angular Resolution Criterion: The angles of incident edges at each station should be maximized, because if there is only a small angle between any two adjacent edges, then it can become difficult to distinguish between them
Edge Length Criterion: The edge lengths across the whole map should be approximately equal to ensure regular spacing between stations. It is based on the preferred multiple, l, of the grid spacing, g. The purpose of the criterion is to penalize edges that are longer than or shorter than lg.
Balanced Edge Length Criterion: The length of edges incident to a particular station should be similar
Line Straightness Criterion: (not yet implemented) Edges that form part of a line should, where possible, be co-linear either side of each station that the line passes through
Octilinearity Criterion: Each edge should be drawn horizontally, vertically, or diagonally at 45 degree, so we penalize edges that are not at a desired angle
Examples
# the algorithm has problems with parallel edgeslibrary(igraph)g <- simplify(metro_berlin)xy <- cbind(V(g)$lon, V(g)$lat)*100# the algorithm is not very stable. try playing with the parameters## Not run:xy_new <- layout_as_metromap(g, xy, l =2, gr =0.5, w = c(100,100,1,1,100), bsize =35)## End(Not run)
References
Stott, Jonathan, et al. "Automatic metro map layout using multicriteria optimization." IEEE Transactions on Visualization and Computer Graphics 17.1 (2010): 101-114.