I like the MATLAB meshc command – it gives you a 3D plot and under it you see the contour plot.

The picture was generated by typing
figure
[X,Y] = meshgrid(-3:.125:3);
Z = -3*Y./(1 + X.^2 + Y.^2));
meshc(Z);
and then clicking the plot and making the lines thicker, fixing the units on the axes and inserting a title.
Those last things could have been done better, but it worked.
Hope that works for all those Texans that have never tried to hike with a topo map in hand!
