- /
-
Global warming
on 8 Oct 2021
- 68
- 174
- 1
- 0
- 227
earthmap
[X,Y] = meshgrid(0:359,-89:90) ;
contour(X,Y,topo,[0 0],'b')
idx = topo<=0 ;
figure('color','k')
hold on
plot(X(idx),Y(idx),'.r')
plot(X(~idx),Y(~idx),'.g')
text(50,13,'Oceans are getting warm','color','w','FontSize',20)
axis off