Skip to content
Permalink
Browse files
overlay data to map
  • Loading branch information
barbulea committed Aug 10, 2020
1 parent 702b530 commit 7924ff59ea39715053504ee05e961d2d698c566e
Showing 1 changed file with 17 additions and 0 deletions.
@@ -77,3 +77,20 @@ elseif colourblind == 3
end

clc

disp('The map in the figure will load shortly ..')
for k = 1 : length(h)
clf;
matrix = pcolor(X,Y,ozoneChoice(:,:,k)');
matrix.EdgeAlpha = 0;
matrix.FaceAlpha = 0.8;
load coast
cities = shaperead('worldcities', 'UseGeoCoords', true);
bar = colorbar;
bar.Label.String = 'Ozone Level';
geoshow(cities, 'Marker', '+', 'Color', 'red')
hold on;
plot(long,lat,'k')
title(sprintf('Ensemble Data on Europe'))
pause(0.3)
end

0 comments on commit 7924ff5

Please sign in to comment.