From: Amalia on
How do I plot, or more specifically - create a .kml file with just 1 filled contour using the "ge_contourf" function? I've been playing with the demo_ge_contourf script and can't seem to get it to work with just 1 filled contour.

I basically just want to duplicate the figure, sans color bar, produced by this:

___
close all
[X,Y] = meshgrid(1:20,1:20);
numLevels = 10;
Z = peaks(20);
cMap = 'jet';
[C,h] = contourf(X,Y,Z,[2 2]);
colorbar
axis image
colormap(cMap)
_____

in a .kml file. Any hints on how to "tweak" the ge_contourf function to do this?
 | 
Pages: 1
Prev: help using ode15i
Next: plotting within while loop