<div dir="ltr"><div class="gmail_default" style="font-size:small">Hi Katie,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">I tried to reproduce this problem using some geo_em files I have with your script, but there&#39;s something weird going on.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Can you provide your geo_em* files?  You can use our ftp, if the files are not too large:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default"><div class="gmail_default">    ftp <a href="http://ftp.cgd.ucar.edu">ftp.cgd.ucar.edu</a></div><div class="gmail_default">    &lt;log in as &quot;anonymous&quot;&gt;</div><div class="gmail_default">    &lt;Use email address as password&gt;</div><div class="gmail_default">    cd incoming</div><div class="gmail_default">    put &lt;your files&gt;</div><div class="gmail_default">    quit</div><div class="gmail_default">    </div><div class="gmail_default">Please note you can&#39;t list the contents of this directory; I&#39;ll need to know the exact name of the file(s) in order to retrieve it (them). You can email me offline with the filenames, if you are concerned about publicizing them for any reason.</div><div class="gmail_default"><br></div><div class="gmail_default">Thanks,</div><div class="gmail_default"><br></div><div class="gmail_default">--Mary</div><div class="gmail_default"><br></div><div class="gmail_default" style="font-size:small"><br></div></div><div class="gmail_default" style="font-size:small"><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Nov 29, 2016 at 11:34 AM, Holman, Kathleen <span dir="ltr">&lt;<a href="mailto:kholman@usbr.gov" target="_blank">kholman@usbr.gov</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_default" style="font-family:tahoma,sans-serif">Hi,</div><div class="gmail_default" style="font-family:tahoma,sans-serif"><br></div><div class="gmail_default" style="font-family:tahoma,sans-serif">I am trying to produce a portrait, three-panel plot of terrain heights from a nested WRF simulation.  When my workstation output type is set to x11, the plots show up as a 3x1 column.  However, when I change the workstation output type to pdf or ps, the plots are forced into landscape mode and some of the images are cut off.  The plots come out as a 3x1 column that is rotated clockwise 90 degrees.  I have tried setting the gsnPaperOrientation option to &quot;portrait&quot; in four different setting locations with no success.  I receive no error messages when running the script, yet my settings are not being realized.  </div><div class="gmail_default" style="font-family:tahoma,sans-serif"><br></div><div class="gmail_default" style="font-family:tahoma,sans-serif">Has anyone found a way to force WRF panel plots into a specific paper orientation?  </div><div><br></div><div><div class="gmail_default" style="font-family:tahoma,sans-serif">​----------</div></div><div><div>load &quot;$NCARG_ROOT/lib/ncarg/<wbr>nclscripts/csm/gsn_code.ncl&quot;</div><div>load &quot;$NCARG_ROOT/lib/ncarg/<wbr>nclscripts/wrf/WRFUserARW.ncl&quot;</div><div><br></div><div>begin</div><div><br></div><div>; type = &quot;x11&quot;</div><div> type = &quot;pdf&quot;</div><div>; type = &quot;ps&quot;</div><div>; type = &quot;ncgm&quot;</div><div>wks = gsn_open_wks(type,&quot;panel_plot_<wbr>geo_domains&quot;)     ; Create a plot workstation</div><div><br></div><div>gsn_define_colormap(wks,&quot;<wbr>rainbow&quot;)</div><div>plot = new(3,graphic)</div><div><br></div><div>fdir = &quot;/home/kholman/WRF/WPS3.7/&quot;</div><div><br></div><div>res = True                              ; Create some plot resources</div><div>res@cnFillOn = True                      ; Create a color fill plot</div><div>res@cnLineLabelsOn = False</div><div>res@NoHeaderFooter = True</div><div>res@gsnSpreadColors = True</div><div>res@lbLabelBarOn = False</div><div>res@ContourParameters = (/0., 3500., 250./)</div><div>res@gsnPaperOrientation = &quot;Portrait&quot;</div><div><br></div><div>pltres = True</div><div>pltres@PanelPlot = True</div><div>pltres@gsnPaperOrientation = &quot;Portrait&quot;</div><div><br></div><div>mpres = True</div><div>mpres@mpGeophysicalLineColor      = &quot;Black&quot;  ; Overwrite basic map settings</div><div>mpres@mpGridLineColor             = &quot;Gray&quot;</div><div>mpres@mpLimbLineColor             = &quot;Gray&quot;</div><div>mpres@mpNationalLineColor         = &quot;Black&quot;</div><div>mpres@mpPerimLineColor            = &quot;Black&quot;</div><div>mpres@mpUSStateLineColor          = &quot;Black&quot;</div><div>mpres@gsnPaperOrientation = &quot;Portrait&quot;</div><div><br></div><div>do j = 1,3</div><div><span class="m_8414815611371091160gmail-Apple-tab-span" style="white-space:pre-wrap">        </span>a = addfile(fdir+&quot;geo_em.d0&quot;+j+&quot;.<wbr>nc&quot;,&quot;r&quot;)   ; Open a file</div><div><br></div><div><span class="m_8414815611371091160gmail-Apple-tab-span" style="white-space:pre-wrap">        </span>ter = a-&gt;HGT_M(0,:,:)                    ; Read the variable to memory</div><div><span class="m_8414815611371091160gmail-Apple-tab-span" style="white-space:pre-wrap">        </span>contour = wrf_contour(a,wks,ter,res)</div><div><br></div><div><span class="m_8414815611371091160gmail-Apple-tab-span" style="white-space:pre-wrap">        </span>plot(j-1) = wrf_map_overlays(a,wks,(/<wbr>contour/),pltres,mpres)          ; Create plot</div><div><span class="m_8414815611371091160gmail-Apple-tab-span" style="white-space:pre-wrap">        </span>delete([/ter/])</div><div>end do</div><div><br></div><div>pnlres                            = True</div><div>pnlres@txString                   = &quot;&quot; </div><div>pnlres@<wbr>gsnPanelYWhiteSpacePercent = 5       ; Add white space b/w plots.</div><div>pnlres@gsnPanelLabelBar           = True    ; Turn on common labelbar</div><div>pnlres@lbLabelAutoStride          = True    ; Spacing of lbar labels.</div><div>pnlres@lbBoxMinorExtentF          = 0.15</div><div>pnlres@gsnPaperOrientation = &quot;Portrait&quot;</div><div><br></div><div>gsn_panel(wks,(/plot/),(/3,1/)<wbr>,pnlres)</div><div><br></div><div>end</div></div><span class="HOEnZb"><font color="#888888"><div><br></div><div><br></div><div><br></div>-- <br><div class="m_8414815611371091160gmail_signature"><div dir="ltr"><div><font face="arial, helvetica, sans-serif">Katie Holman, PhD<br></font></div><div><font face="arial, helvetica, sans-serif">Meteorologist</font></div><div><font face="arial, helvetica, sans-serif">Bureau of Reclamation<br></font></div><div><div><font face="arial, helvetica, sans-serif">Technical Service Center<br></font></div><div><font face="arial, helvetica, sans-serif">P.O. Box 25007, 86-68250</font></div><div><font face="arial, helvetica, sans-serif">Denver, CO 80225-0007</font></div><div><font face="arial, helvetica, sans-serif"><a href="tel:303-445-2571" value="+13034452571" target="_blank">303-445-2571</a></font></div></div><div><br></div></div></div>
</font></span></div>
<br>______________________________<wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/<wbr>mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>