How to remove horizontal lines as plotting 0-360 degree map
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi, I am using following codes to plot a 0-360 degree map, can anyone please help to show me how to remove the horizontal lines on the map created. Athough plot(X,Y,'.') does not show those lines, I wanted to plot the coastlines instead of points. Thanks in advance!
Coast=load('Coast.mat');
X=Coast.long;
Y=Coast.lat;
X(X<=0)=X(X<=0)+360;
plot(X,Y);
2 comentarios
Chunru
el 6 de Jun. de 2021
If you have mapping toolbox:
f= worldmap('world')
plotm(Coast.lat, Coast.lon)
Respuestas (3)
wentao ma
el 1 de Dic. de 2021
coastlon(abs(diff(coastlon))>180+1)=nan;
1 comentario
Cristina Radin
el 2 de Feb. de 2022
Hi! You are right, thank you!
The complete code:
load coastlines
coastlonWrapped = wrapTo360(coastlon);
index=abs(diff(coastlonWrapped))>180+1;
pos=find(index==1) %to be sure
coastlonWrapped(pos)=NaN;
plot(coastlonWrapped,coastlat)
SALAH ALRABEEI
el 6 de Jun. de 2021
Make sure to clear the figure before plotting because the coast.mat does not have these lines.
2 comentarios
Ver también
Categorías
Más información sobre Mapping Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!