<div dir="ltr"><div><div>Please look at:<br><br><a href="http://www.ncl.ucar.edu/Document/Functions/Contributed/region_ind.shtml">http://www.ncl.ucar.edu/Document/Functions/Contributed/region_ind.shtml</a><br><br></div>Look at both examples.<br><br></div>You can use 'ji' (below) the mangle the data as you see fit<br><div><div><div><pre>f     = <a href="http://www.ncl.ucar.edu/Document/Functions/Built-in/addfile.shtml"><strong>addfile</strong></a>("wrf_...nc" , "r")<br>glon2d =  f->XLAT(0,:,:)
glat2d =  f->XLONG(0,:,:)<br><br> <a href="http://www.ncl.ucar.edu/Document/Functions/Contributed/printMinMax.shtml"><strong> printMinMax</strong></a>(glat2d, 0)
  <a href="http://www.ncl.ucar.edu/Document/Functions/Contributed/printMinMax.shtml"><strong>printMinMax</strong></a>(glon2d, 0)

  latS   = 30                      ; California [*rough*]
  latN   = 43
  lonW   = -125
  lonE   = -113

  ji = <strong>region_ind</strong> (glat2d,glon2d, latS, latN, lonW, lonE)

  jStrt = ji(0)      ; lat start
  jLast = ji(1)      ; lat last
  iStrt = ji(2)      ; lon start
  iLast = ji(3)      ; lon last

  LAT2D = glat2d(jStrt:jLast,iStrt:iLast)
  LON2D = glon2d(jStrt:jLast,iStrt:iLast)
</pre></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, May 2, 2018 at 12:53 PM, Christian Adrián Álvarez Báez <span dir="ltr"><<a href="mailto:christian.alvarez813@gmail.com" target="_blank">christian.alvarez813@gmail.com</a>></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><div>Hello, I'm using ncl with WRF output. I would like to do some calculations over an area. I can make a crop with the mpMaxLatF, mpMinLatF, mpMaxLonF and mpMinLonF resources, but I would like to make calculations over that area without touching the area out of the crop. Is this possible? <br><br></div>Thank you very much,<br></div>Christian<br></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>