<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style id="owaParaStyle" type="text/css">P {margin-top:0;margin-bottom:0;}</style>
</head>
<body ocsi="0" fpstyle="1">
<div style="direction: ltr;font-family: Tahoma;color: #000000;font-size: 10pt;">Hi All NCL Users<br>
<br>
I am having a slight problem trying to draw a panel plot, without intially drawing the 3 plots separately. I have used the function res@gsnDraw = False and res@gsnFrame = False for all my plots so I am not sure why they are plotting beforehand.<br>
<br>
The only thing I can think of is that when I overlay the plots they draw then and I am not sure how to stop that.<br>
<br>
Below is a snippet of my code that should be relevant to this problem.<br>
<br>
I would just like it to output one frame with 3 panel plots in it and currently it is plotting the 3 plots overlaid upon one another&nbsp; and then the 3 panel plot. I just want the latter.<br>
<br>
Many thanks for your help in advance.<br>
<br>
Kindest regards<br>
Melissa<br>
<br>
<br>
&nbsp;&nbsp; zres@gsnLeftString&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; = &quot;a.) CMIP5 MME BIAS (qu;qv)&quot;<br>
&nbsp;&nbsp; plot_a = gsn_csm_contour_map(wks,W4(0,:,:),zres)<br>
&nbsp;&nbsp; plot_b = gsn_csm_vector(wks,U3(0,:,:),V3(0,:,:),sres) <br>
&nbsp;<br>
overlay(plot_a,plot_b)<br>
plot(0)=plot_a<br>
<br>
&nbsp;&nbsp; ures@gsnLeftString&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; = &quot;b.) BIAS: MME q &amp; obs uv&quot;<br>
&nbsp;&nbsp; plot_c = gsn_csm_contour_map(wks,speedq(0,:,:),ures)<br>
&nbsp;&nbsp; plot_d = gsn_csm_vector(wks,uq1q(0,:,:),vq1q(0,:,:),sres) <br>
&nbsp;<br>
overlay(plot_c,plot_d)<br>
plot(1)=plot_c<br>
<br>
&nbsp;&nbsp; qres@gsnLeftString&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; = &quot;c.) BIAS: MME uv &amp; obs q&quot;<br>
&nbsp;&nbsp; plot_e = gsn_csm_contour_map(wks,speeduv(0,:,:),qres)<br>
&nbsp;&nbsp; plot_f =gsn_csm_vector(wks,uq1uv(0,:,:),vq1uv(0,:,:),res) <br>
<br>
overlay(plot_e,plot_f)<br>
plot(2)=plot_e<br>
<br>
<br>
&nbsp; resP&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = True&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; modify the panel plot<br>
&nbsp; resP@txString&nbsp;&nbsp; = &quot;&quot;<br>
&nbsp; resP@gsnPanelLabelBar&nbsp;&nbsp; = True&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; add common colorbar<br>
&nbsp; resP@lbTitleOn&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =&nbsp; True&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; turn on title<br>
&nbsp; resP@lbTitleString&nbsp;&nbsp;&nbsp; = &quot;g/kg*m/s&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; title string<br>
&nbsp; resP@lbTitlePosition&nbsp; = &quot;Right&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; title position<br>
&nbsp; resP@lbTitleFontHeightF= .015&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; make title smaller<br>
&nbsp; resP@lbTitleDirection = &quot;Across&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; title direction<br>
&nbsp; resP@pmLabelBarOrthogonalPosF = 0.075&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; move whole thing down<br>
&nbsp;<br>
&nbsp; resP@lbLabelStride&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = 2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; skip every other label<br>
&nbsp; maximize_output(wks,resP)<br>
&nbsp; resP@cnFillOn&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = True&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; color on<br>
&nbsp; resP@cnInfoLabelOn&nbsp;&nbsp;&nbsp;&nbsp; = False&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; turn off info label<br>
&nbsp; resP@gsnPanelRowSpec = True&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; tell panel what order to plt<br>
&nbsp; <br>
&nbsp; gsn_panel(wks,plot,(/2,1/),resP)<br>
<br>
&nbsp; <br>
end<br>
<br>
</div>
</body>
</html>