Undirected graph network with latitude and longitude as node

조회 수: 7 (최근 30일)
Poulomi Ganguli
Poulomi Ganguli 2019년 7월 20일
댓글: Steven Lord 2019년 7월 21일
Is there any way to plot graph structure describing nodes, edges and links but with latitude and logitude as the co-ordinates using MATLAB, like the one describe here:

채택된 답변

Steven Lord
Steven Lord 2019년 7월 21일
See this post on Loren Shure's blog for an example that plots US states (as polyshape objects) along with their centroids (as nodes of a graph, with two centroids connected by an edge if the states they represent share a border.) The latitude and longitude data comes from a shapefile included in Mapping Toolbox.
If you had coordinates for the capitals of those states, you could store that data in the Nodes table of the graph as custom attributes and use those as the X and Y data (and Z data, I suppose, though that may not be so useful) when you call plot on the graph.
  댓글 수: 2
Poulomi Ganguli
Poulomi Ganguli 2019년 7월 21일
Yes, I have the co-ordinates of the nodes data in the form of latitude and longitude and same for the target nodes. My query is the example shows using polyshape function for US states, assuming they are contained in a polygon, will this also work for arbitrary source and target latitude-longitude?
Steven Lord
Steven Lord 2019년 7월 21일
In that example, the polyshape objects representing the state boundaries and the graph object representing the state centroids are independent MATLAB objects. The only relation between them is that their coordinates are both latitude and longitude values so they represent areas in the same section of the map.
If you wanted to create a graph that represents the board for the game Ticket to Ride you could do so. I've done this. [You'd want to use release R2018a or later for this, as the board is a multigraph.]

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2019년 7월 20일
You can employ graph() or digraph() plot tools of MATLAB.
  댓글 수: 1
Poulomi Ganguli
Poulomi Ganguli 2019년 7월 20일
These functions only works for displaying graph structure over cartesian co-ordinates & not over showing links and edges over a shapefile.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Graph and Network Algorithms에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by