How to remove horizontal lines as plotting 0-360 degree map
古いコメントを表示
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 件のコメント
Chunru
2021 年 6 月 6 日
If you have mapping toolbox:
f= worldmap('world')
plotm(Coast.lat, Coast.lon)
Thao Linh Tran
2021 年 6 月 6 日
回答 (3 件)
wentao ma
2021 年 12 月 1 日
2 投票
coastlon(abs(diff(coastlon))>180+1)=nan;
1 件のコメント
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)
Coast=load('Coast.mat');
X=Coast.long;
Y=Coast.lat;
% X(X<=0)=X(X<=0)+360;
X = X+180 ; Y = Y+180 ;
plot(X,Y);
5 件のコメント
Thao Linh Tran
2021 年 6 月 6 日
KSSV
2021 年 6 月 6 日
Edited the answer.
Thao Linh Tran
2021 年 6 月 6 日
KSSV
2021 年 6 月 6 日
180 is added to X and Y, lon and lat are also changed.
Thao Linh Tran
2021 年 6 月 6 日
SALAH ALRABEEI
2021 年 6 月 6 日
0 投票
Make sure to clear the figure before plotting because the coast.mat does not have these lines.
カテゴリ
ヘルプ センター および File Exchange で Map Display についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

