How can I project my data onto a map?

5 vues (au cours des 30 derniers jours)
greg
greg le 11 Juil 2019
I have a variable that is 576x360 that I have been plotting using imagesc and then a mask overlayed to outline the continents but I am wondering if I can plot my data on a real map projection rather than a rectangle. I have tried worldmap but am a bit unsure about how to get my data onto the map. Any tips or reccomendations would be greatly appreciated.

Réponses (1)

Yogesh Khurana
Yogesh Khurana le 24 Juil 2019
To get the data onto the map you can use uistack. uistack is used to reorder visual stacking of UI components. Using this function, you can shift the specified component (map) to another position(bottom) in the stack.
Refer to the following example for the same:
x = 1:500;
y = sind(x);
plot(x,y,'linewidth',3)
axis tight;
hold on
I = imread('640px-WorldMap.png');
h = image(xlim,-ylim,I);
uistack(h,'bottom')
Output:
You can refer to uistack documentation for more details:

Catégories

En savoir plus sur Geographic Plots dans Help Center et File Exchange

Tags

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by