How to plot coast and fill the land with gray without m_map

12 vues (au cours des 30 derniers jours)
silvia zhou
silvia zhou le 23 Sep 2020
Commenté : KSSV le 27 Sep 2020
Dear all,
I have detailed shoreline data. I want to fill the land after ploting the coast. But I don't want to use m_map.
Thank

Réponse acceptée

KSSV
KSSV le 23 Sep 2020
To fill the land use patch/ area/ fill. Read about those functions. To simply plot the coastline use plot.
  2 commentaires
silvia zhou
silvia zhou le 27 Sep 2020
I failed
KSSV
KSSV le 27 Sep 2020
load m_coasts.mat ;
% Get nan's
idx = all(isnan(ncst),2);
idr = diff(find([1;diff(idx);1]));
D = mat2cell(ncst,idr(:),size(ncst,2));
figure
hold on
for i = 1:length(D)
patch(D{i}(:,1),D{i}(:,2),'b')
plot(D{i}(:,1),D{i}(:,2),'k')
drawnow
end

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by