plot using latitude and longitude
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Deepthi B
am 19 Mai 2021
Kommentiert: Deepthi B
am 19 Mai 2021
How can I make plot like this in Matlab? Can anyone please explain the procedure?
0 Kommentare
Akzeptierte Antwort
Chad Greene
am 19 Mai 2021
That looks like you have scattered data. If you have an array of latitudes, an array of longitudes, and a corresponding array of some values z, then the easiest way to make that kind of plot is to treat longitude as the x variable and latitude as the y variable. Then use the standard scatter function like this:
scatter(lon,lat,50,z,'filled')
The 50 above sets the size of the markers. The word 'filled' makes the circles filled with color rather than hollow.
If you would like to add national borders, I recommend using the borders function in Climate Data Toolbox. Syntax would be
borders('countries')
to plot the outline of national boundaries.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Scatter Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!