Borrar filtros
Borrar filtros

How can I project my data onto a map?

1 visualización (últimos 30 días)
greg
greg el 11 de Jul. de 2019
Respondida: Yogesh Khurana el 24 de Jul. de 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.

Respuestas (1)

Yogesh Khurana
Yogesh Khurana el 24 de Jul. de 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:

Categorías

Más información sobre Geographic Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by