How to control elevation of geoshow() contour lines

Tom · Jan 18, 2022 · 2.1K views
Question
In our application we need to sometimes plot contour lines from geoshow() on top of other geoshow() surface plots. In order to make them visible we need to raise them in Z by a few units. We can find the ZData for the contour lines but when we try to change it we get this error message   "Insufficient number of outputs from function on right hand side of equal sign to satisfy overloaded assignment."   The geoshow() call we're using is this.   A = geoshow(latMat2, lonMat2, newRain2, 'DisplayType', 'contour', 'linewidth', 1.0); Once above command is executed, we can see the ZData (all zeros) with this A.Children(:).ZData We try to swap in new ZData values with this A.Children(:).ZData = 8; and get the above referenced error message.     Obviously we're doing something wrong, but don't know what it is.
Expert Answer
Profile picture of Kshitij Singh
Kshitij Singh PhD Expert
Answered Aug 15, 2026
I had a similar problem trying to overlay the build-in "states" map on my 3D surface plot. Your question helped me solve my problem, so I hope I can be of help.
 
 
My initial formulation was a little different since I was using the 'SymbolSpec' option of the geoshow function. Still, I think you can solve your issue assigning an array to A.Children.ZData instead of a scalar.
C = 8;  %some arbitrary height you want place your map at
A.Children.ZData = C*ones(size(A.Children.XData)));

I think the issue was that XData, YData, and ZData need to be the same size. So you just need to create an array of all "8s" and assign it to ZData.

100% Run Guarantee 3-Hour Fast-Track Delivery

Need a Custom Version or Complete Simulation for This Problem?

Our 500+ PhD engineers build, debug, and optimize working MATLAB scripts and Simulink (.slx) models tailored to your exact assignment rubrics with zero plagiarism.

Tested on MATLAB R2024b / R2026a
Turnitin 0% Plagiarism Report
Free 7-Day Revisions Guarantee
Have a different question? Ask here

Get a Free Consultation or a Sample Assignment Review!