<div dir="ltr"><div dir="ltr">Hi Kunal,<div>If I understand correctly what you are after, you'd like to plot the time (at each grid point) where the maximum (or minimum) value occurs. </div><div>This will likely take some trial and error on your part. Here's what I think you need to do:</div><div>1) Use dim_minind and dim_maxind to isolate the index where the grid point value is at its min/max.</div><div><a href="https://www.ncl.ucar.edu/Document/Functions/Contributed/dim_maxind.shtml">https://www.ncl.ucar.edu/Document/Functions/Contributed/dim_maxind.shtml</a></div><div><div><a href="https://www.ncl.ucar.edu/Document/Functions/Contributed/dim_minind.shtml">https://www.ncl.ucar.edu/Document/Functions/Contributed/dim_minind.shtml</a></div><div><br></div><div>This will result in a 2-D array (dimensioned lat x lon) containing the minimum indices, and the same type of array containing the maximum indices.</div><div><br></div><div>2)  There might be a more elegant way to map the indexes onto the correct times, but the following double do loop over the lat/lon dimensions will work:</div><div><br></div><div>; time is an array of your times</div><div>time_min = arr_min    ; arr_min contains the indices that were the minimum at each lat/lon point</div><div>time_max = arr_max</div><div>do gg = 0,dimsizes(arr_min&lat)-1</div><div>     do hh = 0,dimsizes(arr_min&lon)-1</div>          time_min(gg,hh) = time(arr_min(gg,hh))</div><div>          time_max(gg,hh) = time(arr_max(gg,hh))</div><div>     end do</div><div>end do </div><div><br></div><div>You will want to make sure that your time array is in a format that is conducive to being plotted. (18:30 doesn't work for instance, but 1830 would.)</div><div>I think that's it. Try starting with the above suggestions and see if you can get things to work. If you have further questions about this subject please reply to the ncl-talk email list.</div><div>Adam</div><div><br></div><div><br></div></div></div><br><div class="gmail_quote"><div dir="ltr">On Mon, Oct 29, 2018 at 6:57 AM Kunal Bali <<a href="mailto:kunal.bali9@gmail.com" target="_blank">kunal.bali9@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><img class="m_7303927072719506909m_2850111241349097671mailtrack-img" alt="" style="display:flex" src="https://mailtrack.io/trace/mail/0f2b59e0335e8f788bf86f62901c8861f4700f5c.png?u=2827700" width="0" height="0"><div dir="ltr"><div></div><div>Dear NCL users,<br></div><div><br></div><div>I have one file (2000-2017) with time, latitude, longitude and  variable. The time is given in hours(00:30 to 18:30). I need to plot a spatial map of hours values at each grid cells, the contour map of hours values should correspond to the variable values. So that I can see which hour has high and low-value on the map. Some examples are given for time vs latitude and time vs longitude, I don't need that.  I need to plot time vs latitude longitude. <br></div><div><br></div><div>I hope you got my point.<br></div><div>Any information on that?</div><div><br></div><div>Thank You<br></div><div><div dir="ltr" class="m_7303927072719506909m_2850111241349097671gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div>---<br></div><div><font size="2"><span>Kunal Bali<br></span></font></div><br><div><b><br></b></div><div><br></div><div><p style="margin:0px;border-collapse:collapse;font-family:Tahoma,Verdana;font-size:12px"><font color="#1F497D"><br></font></p></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div><br></div></div>
_______________________________________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu" target="_blank">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>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="m_7303927072719506909gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div><div><span><font color="#888888">Adam Phillips <br></font></span></div><span><font color="#888888">Associate Scientist,  </font></span><span><font color="#888888">Climate and Global Dynamics Laboratory, NCAR<br></font></span></div></div><div><span><font color="#888888"><a href="http://www.cgd.ucar.edu/staff/asphilli/" target="_blank">www.cgd.ucar.edu/staff/asphilli/</a>   </font></span><span><font color="#888888">303-497-1726 </font></span></div><span><font color="#888888"></font></span><div><div><span><font color="#888888"><br></font></span><div><span><font color="#888888"><a href="http://www.cgd.ucar.edu/staff/asphilli" target="_blank"></a></font></span></div></div></div></div></div></div></div></div></div></div></div>