<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Please make some effort to explain the problem more clearly next time.<div class="">People are here to help but they don't have time to decipher messages. </div><div class=""><br class=""></div><div class="">If I understood well you have two variables, var1 and var2, which happen to contain precipitation data on two different grids. Both variables, according to your printVarSummary, have coordinates information inside them.</div><div class=""><br class=""></div><div class="">Then, if you want to zoom var2 in the same area as var1 is defined (again, I assume that is your goal from what you said, which is still not clear) you just need to obtain the lat/lon bounds and use them with coordinate subscripting { } (<a href="https://www.ncl.ucar.edu/Document/Language/subscript_coord.shtml" class="">https://www.ncl.ucar.edu/Document/Language/subscript_coord.shtml</a>).</div><div class=""><br class=""></div><div class="">minlon = min(var1&longitude)</div><div class="">maxlon = max(var1&longitude)</div><div class=""><div class="">minlat = min(var1&latitude)</div><div class="">maxlat = max(var1&latitude)</div></div><div class=""><br class=""></div><div class="">var2_zoom = var2(  :  , {minlat:maxlat} ,  {minlon:maxlon} )</div><div class=""><div><br class=""><blockquote type="cite" class=""><div class="">On 8. Oct 2018, at 13:37, VanĂșcia Schumacher <<a href="mailto:vanucia-schumacher@hotmail.com" class="">vanucia-schumacher@hotmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div id="divtagdefaultwrapper" dir="ltr" style="caret-color: rgb(0, 0, 0); font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-size: 14pt; font-family: Calibri, Helvetica, sans-serif;" class=""><div style="margin-top: 0px; margin-bottom: 0px;" class=""><span class="">Sorry, I want to get var2 for the same lat and lon coordinates of var1.</span><br class=""></div></div><hr tabindex="-1" style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; display: inline-block; width: 970.1875px;" class=""><span style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;" class=""></span><div id="divRplyFwdMsg" dir="ltr" style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class=""><font face="Calibri, sans-serif" style="font-size: 11pt;" class=""><b class="">De:</b><span class="Apple-converted-space"> </span>VanĂșcia Schumacher <<a href="mailto:vanucia-schumacher@hotmail.com" class="">vanucia-schumacher@hotmail.com</a>><br class=""><b class="">Enviado:</b><span class="Apple-converted-space"> </span>segunda-feira, 8 de outubro de 2018 08:24:29<br class=""><b class="">Para:</b><span class="Apple-converted-space"> </span><a href="mailto:ncl-talk@ucar.edu" class="">ncl-talk@ucar.edu</a><br class=""><b class="">Assunto:</b><span class="Apple-converted-space"> </span>change lat lon</font><div class=""> </div></div><div dir="ltr" style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class=""><div id="x_divtagdefaultwrapper" dir="ltr" style="font-size: 14pt; font-family: Calibri, Helvetica, sans-serif;" class=""><div style="margin-top: 0px; margin-bottom: 0px;" class="">Hi NCL users,</div><div style="margin-top: 0px; margin-bottom: 0px;" class=""><br class=""></div><p style="margin-top: 0px; margin-bottom: 0px;" class=""></p><div class="">How can I get a variable with latitude and longitude of another variable?</div><div class="">For example, I want var2 to have the same lat and lon of var1, without changing resolution.</div><div class=""><br class=""></div><div class=""><span class="">I tried this way, but don't work</span><br class=""></div><div class=""><span class=""><br class=""></span></div><div class=""><span class=""><br class=""></span></div><div class=""><span class=""><div class="">  minlat     = -37.44693</div><div class="">  maxlat    = -31.94739</div><div class="">  minlon    = -73.65259</div><div class="">  maxlon   = -66.7254</div><div class=""><br class=""></div><span class=""> var2_zoom  = var2(:,minlat:maxlat,minlon:maxlon)</span><br class=""></span></div><div class=""><span class=""><br class=""></span></div><div class=""><span class=""><div class="">fatal:Illegal subscript. Subscripts must be integer when not using coordinate indexing</div><div class=""><br class=""></div><br class=""></span></div><div class="">Variable: var2</div><div class="">Type: float</div><div class="">Total Size: 4570560 bytes</div><div class="">            1142640 values</div><div class="">Number of Dimensions: 3</div><div class="">Dimensions and sizes:<span style="white-space: pre;" class=""> </span>[time | 240] x [latitude | 69] x [longitude | 69]</div><div class="">Coordinates: </div><div class="">            time: [ 369..174945]</div><div class="">            latitude: [-37.44693..-31.94739]</div><div class="">            longitude: [-73.65259..-66.7254]</div><div class="">Number Of Attributes: 5</div><div class="">  units :<span style="white-space: pre;" class=""> </span>mm</div><div class="">  lon2d :<span style="white-space: pre;" class=""> </span><ARRAY of 4761 elements></div><div class="">  lat2d :<span style="white-space: pre;" class=""> </span><ARRAY of 4761 elements></div><div class="">  time :<span style="white-space: pre;" class=""> </span>(    0,    6,   12,   18 )</div><div class="">  description :<span style="white-space: pre;" class=""> </span>Total Precipitation</div><div class=""><br class=""></div><div class=""><div class="">Variable: var1</div><div class="">Type: float</div><div class="">Total Size: 19319040 bytes</div><div class="">            4829760 values</div><div class="">Number of Dimensions: 3</div><div class="">Dimensions and sizes:<span style="white-space: pre;" class=""> </span>[time | 240] x [latitude | 156] x [longitude | 129]</div><div class="">Coordinates: </div><div class="">            time: [370.5..174946.5]</div><div class="">            latitude: [-35.31664..-33.92255]</div><div class="">            longitude: [-70.89447..-69.48352]</div><div class="">Number Of Attributes: 5</div><div class="">  units :<span style="white-space: pre;" class=""> </span>mm</div><div class="">  lon2d :<span style="white-space: pre;" class=""> </span><ARRAY of 20124 elements></div><div class="">  lat2d :<span style="white-space: pre;" class=""> </span><ARRAY of 20124 elements></div><div class="">  time :<span style="white-space: pre;" class=""> </span>(    0,    3,    6,    9,   12,   15,   18,   21 )</div><div class="">  description :<span style="white-space: pre;" class=""> </span>Total Precipitation</div><div class=""><br class=""></div><br class=""></div><div class=""><br class=""></div><br class=""><p style="margin-top: 0px; margin-bottom: 0px;" class=""></p></div></div><span style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;" class="">_______________________________________________</span><br style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class=""><span style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;" class="">ncl-talk mailing list</span><br style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class=""><span style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;" class=""><a href="mailto:ncl-talk@ucar.edu" class="">ncl-talk@ucar.edu</a></span><br style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class=""><span style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;" class="">List instructions, subscriber options, unsubscribe:</span><br style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class=""><span style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;" class=""><a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" class="">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a></span></div></blockquote></div><br class=""><div class="">
<div style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><br class="Apple-interchange-newline">Guido Cioni</div><div style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><a href="http://www.guidocioni.it" class="">www.guidocioni.it</a></div>
</div>
<br class=""></div></body></html>