I know an algo to find the minimum cut in a planar graph.
Works as O(NlogN)
You create a dual graph where each vertice corresponds to original's graph facet and edge corresponds to a minimum edge connecting two facets.
Then you use Dijkstra to find the minimum path in this graph.
This way it is possible to find a minimum cut and count the flow value.
But how can I find any of the sets of the original graph edges which provide this flow value?