Undirected graph network with latitude and longitude as node

12 visualizzazioni (ultimi 30 giorni)
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:

Risposta accettata

Steven Lord
Steven Lord il 21 Lug 2019
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 Commenti
Poulomi Ganguli
Poulomi Ganguli il 21 Lug 2019
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 il 21 Lug 2019
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.]

Accedi per commentare.

Più risposte (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov il 20 Lug 2019
You can employ graph() or digraph() plot tools of MATLAB.
  1 Commento
Poulomi Ganguli
Poulomi Ganguli il 20 Lug 2019
These functions only works for displaying graph structure over cartesian co-ordinates & not over showing links and edges over a shapefile.

Accedi per commentare.

Categorie

Scopri di più su Graph and Network Algorithms in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by