tf_graph_shortest_paths_distances
Given a distance-weighted directed graph, consisting of a queryCURSOR input consisting of the starting and ending node for each edge and a distance, and a specified origin node, tf_graph_shortest_paths_distances computes the shortest distance-weighted path distance between the origin_node and every other node in the graph. It returns a row for each node in the graph, with output columns consisting of the input origin_node, the given destination_node, the distance for the shortest path between the two nodes, and the number of edges or graph “hops” between the two nodes. If origin_node does not exist in the node1 column of the edge_list CURSOR, an error is returned.
Input Arguments
Output Columns
Example A
Example B
