<div dir="ltr">I am working on zooming in on Texas/ New Mexico for a case study 
that I&#39;m performing with the WRF. I have the actual map zoomed in to the
 region that I want, but the plotting of the qnifa variable doesn&#39;t 
scale and stays as if the map projected is that of the CONUS. Can anyone
 tell me what I&#39;m doing wrong? I have attached two plots to illustrate the issue. The plot of the CONUS is correct in its placement and areas of qnifa, the zoomed plot is not.<br><br>Thanks in advance for the help!<br><br>-Andrew<br><br>load &quot;$CSM/gsn_code.ncl&quot;<br>load &quot;$CSM/gsn_csm.ncl&quot;<br>load &quot;$CSM/contributed.ncl&quot;<br><br>begin<br>  res = True<br>  res@cnLinesOn          = False<br>  res@cnFillOn           = True               ; color plot desired<br>  res@cnLineLabelsOn     = False              ; turn off contour lines<br>  res@cnInfoLabelOn       = False           ; turn off cn info label<br><br>  res@mpGeophysicalLineColor= &quot;black&quot; ; color of continental outlines<br>  res@mpPerimOn             = True ; draw box around map<br>  res@mpPerimDrawOrder      = &quot;PostDraw&quot;<br>  res@mpGridLineDashPattern = 2 ; lat/lon lines as dashed<br>  res@mpOutlineBoundarySets = &quot;GeophysicalAndUSStates&quot;<br>  res@mpUSStateLineColor    = &quot;black&quot;<br><br>  cmap = read_colormap_file(&quot;CBR_<wbr>drywet&quot;)<br><br>  ff = addfile(&quot;<a href="http://wrfout.nc" target="_blank">wrfout.nc</a>&quot;,&quot;r&quot;)<br>  if (ff@MAP_PROJ .eq. 1) then<br>    res@mpProjection        = &quot;LambertConformal&quot;<br>  end if<br>  res@mpLambertMeridianF    = ff@CEN_LON<br>  res@mpLambertParallel1F   = ff@TRUELAT1<br>  res@mpLambertParallel2F   = ff@TRUELAT2<br>  res@gsnAddCyclic          = False<br>  res@tfDoNDCOverlay        = True<br>  res@mpLimitMode           = &quot;Corners&quot;<br>  xlats = ff-&gt;XLAT<br>  xlons = ff-&gt;XLONG<br>  ijdim = dimsizes(xlats)<br>  imax = ijdim(1)<br>  jmax = ijdim(2)<br>  res@mpLeftCornerLatF      = 37<br>  res@mpLeftCornerLonF      = -110<br>  res@mpRightCornerLatF     = 28<br>  res@mpRightCornerLonF     = -96<br>  res@mpFillOn                  <wbr>  = True<br><br>  res@cnLevelSelectionMode = &quot;ExplicitLevels&quot;<br>  res@cnLevels  = (/4E6,8E6,16E6,32E6,64E6/)<br>  res@cnFillColors = (/7,6,5,4,3,2/)<br>  res@cnMissingValFillColor = 13<br><br>  hgt = ff-&gt;QNIFA(0,0,:,:)<br><br> 
 res@tiMainString = &quot;Ice-Friendly Aerosol Concentration at Lowest Model 
Level  ~C~   W/ IC_BC and -30% SMOIS 19:00Z February 24, 2007&quot;<br>  res@tiMainFontHeightF = 0.015<br>  res@gsnRightString = &quot; &quot;<br>  res@gsnLeftString = &quot; &quot;<br>  res@gsnMaximize      = True<br>  res@gsnFrame     = False            ; Don&#39;t advance the frame<br><br>    wks = gsn_open_wks(&quot;png&quot;,&quot;qnifa_<wbr>plot&quot;)<br>    gsn_define_colormap(wks, &quot;CBR_drywet&quot;)<br><br>    map = gsn_csm_contour_map(wks,hgt,<wbr>res)<br><br>  frame(wks)<br><br>end</div>