<div dir="ltr">Hi all,<div><br></div><div>I made a plot of overlaying NARR 500 hPa contours on top of SSMIS Integrated Water Vapor. That plot looks great, but when I try to make a (/2,2/) panel plot for 4 of the same images, ncl seems to ignore some of my resources. Specifically, I tell it to turn it off the contour Info Label box by setting that option cnInfoLabelBar = False. Also, I want the labelbar to span across the entire page (from the beginning of the bottom left plot to the end of the bottom right). I thought the resources <span style="color:rgb(61,133,198)">lbLeftMarginF  =0 and lbRightMarginF = 0 </span><font color="#000000">would fix this but it has not.</font> I am not sure why ncl is ignoring these 2 resources and what I can to to fix these things. I will attach both images along with my code: </div>
<div><br></div><div><br></div><div><br></div><div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;***************************************************************************</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl&quot;</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl&quot;</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl&quot;</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br>
</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">begin</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div><div>
<span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;create function to read ssmi file</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">undef(&quot;get_var_ssmi&quot;)</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">function get_var_ssmi(f[1]:file,var[1]:string)</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">; local utility function for cleaner code</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">local xs, x, ymdh</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">begin</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  xs = f-&gt;$var$</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  xs = where(xs.ge.toshort(251), toshort(255), xs)</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  xs@_FillValue = toshort(255)               ; CF conforming</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  x  = short2flt(xs)</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br>
</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  delete(x&amp;time)                             ; delete type dhort</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  ymdh   = cd_calendar(xs&amp;time, -3)          ; yyyymmddhh</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  x&amp;time = ymdh</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  return(x)</font></span></div><div>
<span style="background-color:rgb(255,255,255)"><font color="#3d85c6">end</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;get info for each episode</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;           1           2           3         4</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  time=(/&quot;1518 UTC&quot;,&quot;1623 UTC&quot;,&quot;1441 UTC&quot;,&quot;1600 UTC&quot;/)</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  date=(/&quot;20121128&quot;,&quot;20121130&quot;,&quot;20121201&quot;,&quot;20121202&quot;/)</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  swath=&quot;descending&quot;</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  satnum=(/&quot;f16&quot;,&quot;f17&quot;,&quot;f16&quot;,&quot;f17&quot;/)</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br>
</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  fname = &quot;iwv_episodes_panel&quot;</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  wks  = gsn_open_wks (&quot;ps&quot;, fname)</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">; MAKE PANEL PLOTS</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">plots = new(4,graphic)</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div><div>
<span style="background-color:rgb(255,255,255)"><font color="#3d85c6">do i=0,3</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  ssmis_fin=&quot;./&quot;+satnum(i)+&quot;/&quot;+satnum(i)+&quot;_ssmis_&quot;+date(i)+&quot;<a href="http://v7.nc">v7.nc</a>&quot;</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  narr_fin=&quot;../NARR/data/narr-a_221_&quot;+date(i)+&quot;_1500_000.grb&quot;</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  f=addfile(ssmis_fin,&quot;r&quot;)</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  n=addfile(narr_fin,&quot;r&quot;)</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;============================================================================</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;============================================================================</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br>
</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  iwv0 = get_var_ssmi(f, &quot;atmosphere_water_vapor_content&quot;)</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  if(swath.eq.&quot;descending&quot;) then</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">    iwv = iwv0(0,:,:)</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  else</font></span></div><div>
<span style="background-color:rgb(255,255,255)"><font color="#3d85c6">    iwv = iwv0(1,:,:)</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  end if</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;*************create plots**************************************************************************</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">; colors for iwv plot</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  colors = (/&quot;dodgerblue4&quot;,&quot;dodgerblue4&quot;,&quot;dodgerblue3&quot;,&quot;dodgerblue&quot;,&quot;forestgreen&quot;,&quot;limegreen&quot;,&quot;green2&quot;,&quot;yellow4&quot;,&quot;yellow3&quot;,&quot;yell</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">ow1&quot;,\</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">             &quot;darkorange4&quot;,&quot;darkorange3&quot;,&quot;orange&quot;,&quot;red4&quot;,&quot;red3&quot;,&quot;red&quot;,&quot;purple4&quot;,&quot;purple3&quot;,&quot;purple&quot;/)</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">; iwv plot resources</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> res               =True</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> res@gsnDraw       =False</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> res@gsnFrame      =False</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> res@gsnAddCyclic  =False</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> res@sfXArray      =iwv&amp;longitude</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> res@sfYArray      =iwv&amp;latitude</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> res@cnFillOn                  =  True             ; turn on color fill</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> res@cnLinesOn                 =  False       ; Turn off contour lines</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> res@cnLineLabelsOn            =  False       ; Turn off contour lines</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> res@cnLevelSelectionMode      = &quot;ExplicitLevels&quot;</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> res@lbLabelBarOn              = False</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> res@lbLabelAutoStride         = False</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> res@cnLabelBarEndStyle        = &quot;ExcludeOuterBoxes&quot;  ; stop ncl from adding two extra boxes on label bar</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> res@cnLevels = (/10, 13.33333,16.66667,20,23.33333,26.66667,30, \</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">                      33.33333,36.66667,40,43.33333,46.66667,50, \</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">                      53.33333,56.66667,60,63.33333,66.66667,70 /)</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> res@cnFillColors              = colors</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">; res@cnExplicitLabelBarLabelsOn</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> res@gsnLeftString             = &quot; &quot;</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> res@gsnRightString            = &quot; &quot;</font></span></div>
<div><br></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> iwv_plot = gsn_csm_contour(wks,iwv,res)</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br>
</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;=============================================================================</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;Height</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;=============================================================================</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br>
</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  hgt     = n-&gt;HGT_221_ISBL(12,:,:)</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  hgt     = hgt/10.0</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  lat2d   = n-&gt;gridlat_221</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  lon2d   = n-&gt;gridlon_221</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  hgt@lat2d = lat2d</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  hgt@lon2d = lon2d</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">; height resources</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres = True</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@gsnDraw = False</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@gsnFrame = False</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@gsnAddCyclic = False</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@gsnLeftString = &quot;&quot;</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@gsnRightString = &quot;&quot;</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  clevs = ispan(498,612,6)</font></span></div><div>
<span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnFillOn=False</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnLinesOn=True</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnLabelMasking = True                    ;  does not draw line behind label</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnLineLabelBackgroundColor = -1          ; transparent</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnLineLabelFontHeightF = 0.01</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnLevelSelectionMode=&quot;ExplicitLevels&quot;</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnLevels = clevs</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnInfoLabelOn = False</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnSmoothingOn = True</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  ;set High/Low Labels</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnInfoLabelOn=False</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnHighLabelsOn = True; label highs</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnHighLabelFormat = &quot;.3f&quot;</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnHighLabelPerimOn = False</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnHighLabelFontHeightF = 0.015; larger H labels</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnHighLabelBackgroundColor = &quot;Transparent&quot;</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnLowLabelsOn = True; label lows</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnLowLabelFormat = &quot;.3f&quot;</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnLowLabelPerimOn = False</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnLowLabelFontHeightF = 0.015; larger L labels</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnLowLabelBackgroundColor = &quot;Transparent&quot;</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  htres@cnConpackParams = (/ &quot;HLX:2, HLY:2&quot; /)</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br>
</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  ;make plot</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  hgt_plot = gsn_csm_contour(wks,hgt,htres)</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  delete(htres)</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;====================================</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">; Control Map Resources</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div><div>
<span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;  Put on Native Lambert Conic Projection and map whole NARR 221 grid</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres=True</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@gsnDraw=False</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@gsnFrame=False</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@mpProjection           = &quot;CylindricalEquidistant&quot;</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@mpFillOn               = False</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@mpLimitMode            = &quot;LatLon&quot;            ; choose range of map</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@mpMinLatF              = 10.</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@mpMinLonF              = -155.</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@mpMaxLatF              = 60.</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@mpMaxLonF              = -110.</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@mpDataBaseVersion      = &quot;MediumRes&quot;</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@mpOutlineOn            = True</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;  mpres@mpLandFillColor       = &quot;gray&quot;</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@mpOutlineDrawOrder     = &quot;PostDraw&quot;</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@mpOutlineBoundarySets  = &quot;GeophysicalandUSStates&quot;         ; turn on state boundaries</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@tmXTOn                 = False</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@tmYROn                 = False</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@tmXBLabelFontHeightF   = 0.009</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@tmYLLabelFontHeightF   = 0.009   ;tick mark font</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@tmXBLabelDeltaF        = -0.95   ;space between tickmark label and actual tick mark</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@tmYLLabelDeltaF        = -0.95</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;titles</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@gsnStringFontHeightF      = 0.011</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@gsnLeftString             = &quot;Episode &quot;+tostring(i+1)</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@gsnLeftStringOrthogonalPosF = 0.003</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@gsnRightString            = &quot;11/28 &quot;+time(i)+&quot; SSMIS IWV / 1500 UTC NARR 500 mb&quot;</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  mpres@gsnRightStringOrthogonalPosF = 0.003</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;  mpres@tmXBLabelFontHeightF   =0.002</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;  mpres@tmYLLabelFontHeightF   =0.002</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;make map</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">  map     = gsn_csm_map(wks,mpres)</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">;overlay maps</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> overlay(map,iwv_plot)</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> overlay(map,hgt_plot)</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"> plots(i)=map</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">end do</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br></font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">pnlres = True</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">pnlres@gsnMaximize = True</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">pnlres@gsnPanelLabelBar = True</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">pnlres@lbLabelAutoStride         = False</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">pnlres@cnLabelBarEndStyle        = &quot;ExcludeOuterBoxes&quot;  ; stop ncl from adding two extra boxes on label bar</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><b>pnlres@lbLeftMarginF             = 0  </b></font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><b>pnlres@lbRightMarginF            = 0  </b></font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">pnlres@lbLabelOffsetF            = 0.05 ;determines amount of space between actual label and labelbar</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">pnlres@lbLabelStride             = 3    ; skip every other label</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">pnlres@lbTitleString             = &quot;IWV (mm)&quot;</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">pnlres@lbTitleFontHeightF        = 0.0085</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">pnlres@lbTitlePosition           = &quot;Bottom&quot;</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">pnlres@lbBoxMinorExtentF         = 0.14 ; perpendicular width of labelbar</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">pnlres@lbLabelFontHeightF        = 0.010</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">pnlres@pmLabelBarOrthogonalPosF  = -0.01</font></span></div>
<div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><b>pnlres@cnInfoLabelOn             = False</b></font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br>
</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">gsn_panel(wks,plots,(/2,2/),pnlres)</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6"><br>
</font></span></div><div><span style="background-color:rgb(255,255,255)"><font color="#3d85c6">end</font></span></div></div><div><br></div><div><br></div><div><br></div><div>Thanks,</div><div><br clear="all"><div><br></div>
-- <br><div dir="ltr">Arthur J. Eiserloh, Jr.<div>San Jose State University </div><div>Graduate Student</div><div>Dept. of Meteorology and Climate Science</div></div>
</div></div>