<div dir="ltr"><div><div>Hi,<br><br></div>I&#39;m not clear on what you are trying to do.  The plots look about what I would expect given the lat/lon extents.  Did you perhaps mean lonR to be -90?<br><br></div>Rick<br><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Mar 15, 2016 at 10:10 PM, Adv <span dir="ltr">&lt;<a href="mailto:advita6@gmail.com" target="_blank">advita6@gmail.com</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>Hi,<br></div><div>I would like to plot lat and lon mentioned below. But the plot I attached here  over the globe. I think  all the res_map properties looks fine. But why  the figure is like this? Could someone help me to fix this?<br><br></div><div>Thanks<br></div><div> <br></div><div><br>latS   =  40.<br>  latN   =  49.<br>  lonL   = -116.<br>  lonR   =  90.<br><br><br></div>wks = gsn_open_wks(&quot;pdf&quot;,&quot;eof&quot;)<br>  gsn_define_colormap(wks,&quot;BlWhRe&quot;)       ; choose colormap<br>  plot = new(neof,graphic)                ; create graphic array<br>                                          ; only needed if paneling<br>; EOF patterns<br><br>  res                      = True<br>  res@gsnDraw              = False        ; don&#39;t draw yet<br>  res@gsnFrame             = False        ; don&#39;t advance frame yet<br><br>;---This resource not needed in V6.1.0<br>  res@gsnSpreadColors      = True         ; spread out color table<br><br>  res@gsnAddCyclic         = False        ; plotted dataa are not cyclic<br><br>  res@mpFillOn             = False        ; turn off map fill<br>res@mpLimitMode           = &quot;LatLon&quot;<br>  res@mpMinLatF            = latS         ; zoom in on map<br>  res@mpMaxLatF            = latN<br>  res@mpMinLonF            = lonL<br>  res@mpMaxLonF            = lonR<br> res@cnFillOn             = True         ; turn on color fill<br>  res@cnLinesOn            = False        ; True is default<br>;res@cnLineLabelsOn       = False        ; True is default<br>  res@lbLabelBarOn         = False        ; turn off individual lb&#39;s<br> res@mpPerimOn              = True                    ; draw box around map<br>res@mpGeophysicalLineThicknessF = 3.0<br>res@mpGeophysicalLineColor = &quot;Black&quot;; (/22/)<br>;res@mpNationalLineThicknessF  = 3.0<br>res@mpOutlineBoundarySets = &quot;GeophysicalAndUSStates&quot; ; add state boundaries<br>res@mpNationalLineColor  = res@mpGeophysicalLineColor<br>res@mpUSStateLineThicknessF = 3.0<br>res@mpUSStateLineColor  = res@mpGeophysicalLineColor<br><br><br>                                          ; set symmetric plot min/max<br>  symMinMaxPlt(eof, 16, False, res)       ; contributed.ncl<br>; panel plot only resources<br>  resP                     = True         ; modify the panel plot<br>  resP@gsnMaximize         = False         ; large format<br>  resP@gsnPanelLabelBar    = True         ; add common colorbar<br>  resP@lbLabelAutoStride   = True         ; auto stride on labels<br><br>  yStrt                    = yyyymm(0)/100<br>  yLast                    = yyyymm(nyrs-1)/100<br>;  resP@txString            = &quot;SLP: &quot;+season+&quot;: &quot;+yStrt+&quot;-&quot;+yLast<br><br>;*******************************************<br>; first plot<br>;*******************************************<br>  do n=0,neof-1<br>     res@gsnLeftString  = &quot;EOF &quot;+(n+1)<br>     res@gsnRightString = sprintf(&quot;%5.1f&quot;, eof@pcvar(n)) +&quot;%&quot;<br>     plot(n)=gsn_csm_contour_map_ce(wks,eof(n,:,:),res)<br>  end do<br>;*******************************************<br>; second plot<br>;*******************************************<br>; EOF time series  [bar form]<br><br>  rts           = True<br>  rts@gsnDraw   = False       ; don&#39;t draw yet<br>  rts@gsnFrame  = False       ; don&#39;t advance frame yet<br>  rts@gsnScale  = True        ; force text scaling<br><br>; these four rtsources allow the user to stretch the plot size, and<br>; decide exactly where on the page to draw it.<br><br>  rts@vpHeightF = 0.40        ; Changes the aspect ratio<br>  rts@vpWidthF  = 0.85<br>  rts@vpXF      = 0.10        ; change start locations<br>  rts@vpYF      = 0.75        ; the plot<br><br><br>  rts@tiYAxisString = &quot;mm/day&quot;     rts@gsnYRefLine           = 0.              ; reference line<br>  rts@gsnXYBarChart         = True            ; create bar chart<br>  rts@gsnAboveYRefLineColor = &quot;red&quot;           ; above ref line fill red<br>  rts@gsnBelowYRefLineColor = &quot;blue&quot;          ; below ref line fill blue<br><br>; panel plot only resources<br>  rtsP                      = True            ; modify the panel plot<br>  rtsP@gsnMaximize          = True            ; large format<br>  rtsP@txString             = &quot;Prec: &quot;+season+&quot;: &quot;+yStrt+&quot;-&quot;+yLast<br><br>  year = yyyymm/100<br><br>; create individual plots<br>  do n=0,neof-1<br>     rts@gsnLeftString  = &quot;EOF &quot;+(n+1)<br>     rts@gsnRightString = sprintf(&quot;%5.1f&quot;, eof@pcvar(n)) +&quot;%&quot;<br>     plot(n) = gsn_csm_xy (wks,year,eof_ts(n,:),rts)<br>  end do<br>  gsn_panel(wks,plot,(/neof,1/),rtsP)     ; now draw as one plot<br>end<br>     <br><br></div>
<br>_______________________________________________<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/mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>