A planar graph is a graph that can be drawn in the plane such that no two edges cross.
For example, the graph Graph[{{1, 2}, {2, 3}, {3, 1}, {1, 4}, {3, 4}, {2, 4}}] is planar, and can be shown in both of these ways:

The layout in the left doesn't have crossing edges and it's immediately obvious that the graph is planar. The layout on the right is what Mathematica gives me by default.
Question: How can a planar graph be shown without any crossing edges in Mathematica?
I expect Combinatorica` might have this feature as it has a PlanarQ function, but unfortunately the documentation is not included with Mathematica and I have not been able to find out how to do this.
Testing whether a Graph is planar is possible like this:
<< GraphUtilities`
PlanarQ@ToCombinatoricaGraph[someGraph]
Note: The above way of testing planarity is for version 8 or earlier. The PlanarGraphQ built-in function was introduced in version 9.
Here's a random set of planar graph of different sizes to test on:
<< ComputationalGeometry`
graphs = DeleteDuplicates[
Flatten@Table[
Graph@
Union[Sort /@
Join @@ (Thread /@
DelaunayTriangulation@RandomReal[1, {j, 2}])],
{10}, {j, 4, 10}
], IsomorphicGraphQ];
To avoid confusion, I'd like to note that the ComputationalGeometry`PlanarGraphPlot[] function does not do what I need. It does not lay out a graph. One needs to provide an explicit list of vertex coordinates to it. I have a graph as the input, I know that it's planar, and need a layout algorithm that will draw the graph without intersecting edges.
.




Combinatorica`is not included. It has to be bought separately. – Szabolcs Feb 15 '12 at 14:47RadialDrawingin the right-click context menu underGraph Layout. For this example it gives the graph on the left. – kglr Feb 15 '12 at 14:48GraphData["TetrahedralGraph"]is drawn such that it is obviously planar... – J. M.'s missing motivation Feb 15 '12 at 14:53GraphData["Classes"]returns 163 classes of which oneis"Planar"andGraphData["Planar"]returns 2923 graphs. Perhaps, this list could serve as some sort of look-up table? – kglr Feb 15 '12 at 15:14GraphDatadon't contain vertex position information, so it doesn't solve the visualization problem. Testing planarity is not a problem,PlanarQdoes that. Also, lookup tables with graphs are really problematic because they require a lot of isomorphism testing (which can be slow---and version 8.0.4IsomorphicGraphQis still buggy unfortunately) – Szabolcs Feb 15 '12 at 15:43PlanarQthat it is indeed a planar graph, and now I would like to show it as a planar graph (i.e. without intersecting edges) – Szabolcs Feb 15 '12 at 17:44