Contour lines above surf or mesh plot (plot viewed top down)

11 views (last 30 days)
Hi,
I want to plot an array in top down view and have contour lines (with labels) above the colormap. Now the colormap is placed over the contour lines for some values, because the contour plot is at z=0 and some values in the array larger than z=0. When I set FaceAlpha to 0.5 the contour lines are somewhat visible, but this isn't exactly an elegant solution.
Does somebody have a good solution?
This is the code I use:
clear all;
close all;
clc;
data=importdata('depth averaged velocity 2010 referentie.mat');
[tt,m,n]=size(data.XComp);
T = input('Choose Timepoint T:');
zx=data.XComp(T,:,:); % picks flow velocity at t=T from flow velocity matrix
zy=data.YComp(T,:,:);
zx=reshape(zx,m,n); % zx isn't plotted in this script
zy=reshape(zy,m,n);
hold on
surf(data.X,data.Y,zy,'FaceAlpha',0.5);
view(2);
shading flat
colormap(flipud(colormap));
[c,h]=contour(data.X,data.Y,zy,'k',);
clabel(c,h);
hold off

Answers (1)

Babak
Babak on 12 Dec 2012
You have a typo at this line:
[c,h]=contour(data.X,data.Y,zy,'k',);
Change it to
[c,h]=contour(data.X,data.Y,zy,'k');
If you need better resolution for the contourmap, you need to use, meshgrid() for your data.X and data.Y and use finer grids! I mean if you are having
data.X = linspace(-1,1,100);
Change it to
data.X = linspace(-1,1,200);
which has more points and creates a finer mesh.
You would also want to swap these the two lines of contour and colormap, use
...
[c,h]=contour(data.X,data.Y,zy,'k',);
colormap(flipud(colormap));
...
  1 Comment
Wilbert
Wilbert on 12 Dec 2012
Edited: Wilbert on 12 Dec 2012
A point-for-point reply:
- I made that typo only here, it's not in my script.
- About the resolution of the contour line, the resolution is good enough. It's a fairly large grid of several km^2.
- I have swapped the two lines, is indeed more efficient.
But your answer doesn't solve my problem at all. The resolution of the grid isn't the problem. The problem is that the contour lines aren't always on top, but are under the colormap. I attached two plots to help visualizing the problem.
The last figure shows the problem, the contour lines are under the colormap. Changing the transparancy solves the problem a bit, but that's not the solution I am looking for.

Sign in to comment.

Categories

Find more on Contour Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!