<div dir="ltr"><div class="gmail_default"><font face="arial, helvetica, sans-serif">Geeta,</font></div><div class="gmail_default"><font face="arial, helvetica, sans-serif"><br></font></div><div class="gmail_default"><font face="arial, helvetica, sans-serif">Please always respond back to ncl-talk for all follow-up emails, unless we explicitly ask to have the email taken offline. </font></div><div class="gmail_default"><font face="arial, helvetica, sans-serif"><br></font></div><div class="gmail_default"><font face="arial, helvetica, sans-serif">You have two errors.  The first is telling you what the problem is:</font></div><div class="gmail_default"><font face="arial, helvetica, sans-serif"><br></font></div><div class="gmail_default"><font face="arial, helvetica, sans-serif"><span style="color:rgb(0,0,0)">warning:ContourPlotSetValues: current transformation requires trXMaxF to be within data coordinate range: resetting</span><br style="color:rgb(0,0,0)"></font></div><div class="gmail_default"><p class=""><span class=""><font face="arial, helvetica, sans-serif"></font></span></p><p class=""><span class=""><font face="arial, helvetica, sans-serif">I think you simply need to set trXMinF to the actual minimum of your data, and not some arbitrary value. Without being able to run your script, I can&#39;t tell you exactly why this error is occurring, but my guess is because your Y axis coordinates are irregularly spaced, and hence that turns your whole plot into an &quot;irregular&quot; plot. This means you can&#39;t arbitrarily set the min/max values to something outside the range of the data.</font></span></p></div><div class="gmail_default"><font face="arial, helvetica, sans-serif">The second is that you are adding lat2d and lon2d attributes to your data variables, but this doesn&#39;t make any sense because your data is not over a map.  You need to remove these two lines:</font></div><div class="gmail_default"><font face="arial, helvetica, sans-serif"><br></font></div><div class="gmail_default">







<p class=""><span class=""><font face="arial, helvetica, sans-serif">    RF_fnl@lon2d       =  longitude</font></span></p>
<p class=""><span class=""><font face="arial, helvetica, sans-serif">    RF_fnl@lat2d       =  latitude</font></span></p><p class=""><font face="arial, helvetica, sans-serif">--Mary<br></font></p></div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Aug 22, 2016 at 2:48 AM, Geeta Geeta <span dir="ltr">&lt;<a href="mailto:geetag54@yahoo.com" target="_blank">geetag54@yahoo.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div><div style="color:rgb(0,0,0);font-family:HelveticaNeue,&quot;Helvetica Neue&quot;,Helvetica,Arial,&quot;Lucida Grande&quot;,sans-serif;font-size:16px;background-color:rgb(255,255,255)"><div>thanks Mary. </div><div>I have followed the example quoted by you and accordingly changed my datasets. <br></div><div><br></div><div dir="ltr"><span>warning:ContourPlotSetValues: current transformation requires trXMaxF to be within data coordinate range: resetting<br>(0)    is_valid_latlon2d_attr: Warning: The &#39;lon2d&#39; attribute must either be the same dimension sizes as the data, or one element larger in both directions.  Your data will most likely not be overlaid on the map correctly.<br>(0)    is_valid_latlon2d_attr: Warning: The &#39;lat2d&#39; attribute must either be the same dimension sizes as the data, or one element larger in both directions.  Your data will most likely not be overlaid on the map correctly.<br><b>warning:ContourPlotSetValues: current transformation requires trXMinF to be within data coordinate range: resetting</b><br>but my difficulty persists. I am sending my modified code. <br></span></div><div dir="ltr"><span>thanks</span></div><div> </div><div>Geeta.</div> <div><br><br></div><div style="display:block"> <div style="font-family:HelveticaNeue,&quot;Helvetica Neue&quot;,Helvetica,Arial,&quot;Lucida Grande&quot;,sans-serif;font-size:16px"> <div style="font-family:HelveticaNeue,&quot;Helvetica Neue&quot;,Helvetica,Arial,&quot;Lucida Grande&quot;,sans-serif;font-size:16px"><span class=""> <div dir="ltr"><font face="Arial" size="2"> On Monday, 22 August 2016 2:52 AM, Mary Haley &lt;<a href="mailto:haley@ucar.edu" target="_blank">haley@ucar.edu</a>&gt; wrote:<br></font></div>  <br><br> </span><div><div><div><div dir="ltr"><span class=""><div style="font-size:small">Geeta,</div><div style="font-size:small"><br clear="none"></div><div style="font-size:small">To plot both plots in the same space, you need to use the &quot;overlay&quot; procedure.</div><div style="font-size:small"><br clear="none"></div><div style="font-size:small">First, change the Plot_NPIX_FIX variable to be unique when you call gsn_csm_contour:</div></span><div>







<div style="font-size:small"><span><font face="monospace, monospace">    Plot_NPIX_FIX_1             =   gsn_csm_contour(Wks_NPIX_FIX, RF_NPIX_FIX,Res) ; keep Long in X axis</font></span></div>
<div style="font-size:small"><span><font face="monospace, monospace">   delete(RF_NPIX_FIX)</font></span></div>
<div style="font-size:small"><span><font face="monospace, monospace">    NSCAN = 2872</font></span></div>
<div style="font-size:small"><span><font face="monospace, monospace">    RF_NPIX_FIX     =  work(:,Fix_NSCAN-40:Fix_NSCAN+ 40,Fix_NP)  ; nlev X nscan</font></span></div>
<div style="font-size:small"><span><font face="monospace, monospace">    Plot_NPIX_FIX_2             =   gsn_csm_contour(Wks_NPIX_FIX, RF_NPIX_FIX,Res) ; keep Long in X axis</font></span></div><span class=""><div style="font-size:small">Then overlay one plot on the other using &quot;overlay&quot;:</div></span><div style="font-size:small"><font face="monospace, monospace">  overlay(</font><span style="font-family:monospace,monospace">Plot_NPIX_FIX_2</span><font face="monospace, monospace">,Plot_ NPIX_FIX_1)  ; Plot_NPIX_FIX_1 will become part of Plot_NPIX_FIX_2<br clear="none">  draw(</font><span style="font-family:monospace,monospace">Plot_NPIX_FIX_2)   ; This draws both plots<br clear="none">  frame(</span><span style="font-family:monospace,monospace">Wks_NPIX_FIX)</span></div><div><div class="h5"><div style="font-size:small"><font face="arial, helvetica, sans-serif">It&#39;s important to note that when you do an overlay like this, the axes in the first plot (the &quot;base&quot; plot) is going to be used for the final result. If the second plot (the &quot;overlay&quot; plot) is not in the same X/Y space as the &quot;base&quot; plot, then part of your plot will be cut off. If this happens in your case, then you need to set one or more of the trXMinF, trXMaxF, trYMinF, trYMaxF resources to be large enough to accommodate both plots</font></div><div style="font-size:small">Please see example overlay_13.ncl which illustrates this:</div><div style="font-size:small"><a rel="nofollow" shape="rect" href="http://www.ncl.ucar.edu/Applications/overlay.shtml#ex13" target="_blank">http://www.ncl.ucar.edu/<wbr>Applications/overlay.shtml#<wbr>ex13</a><br clear="none"></div><div style="font-size:small">--Mary</div><div style="font-size:small"><br clear="none"></div></div></div></div></div><div><br clear="none"><div><div><div class="h5">On Sun, Aug 21, 2016 at 10:14 AM, Geeta Geeta <span dir="ltr">&lt;<a rel="nofollow" shape="rect" href="mailto:geetag54@yahoo.com" target="_blank">geetag54@yahoo.com</a>&gt;</span> wrote:<br clear="none"></div></div><blockquote style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div><div><div style="color:rgb(0,0,0);font-family:HelveticaNeue,&quot;Helvetica Neue&quot;,Helvetica,Arial,&quot;Lucida Grande&quot;,sans-serif;font-size:16px;background-color:rgb(255,255,255)"><div><div class="h5"><div><span>thanks Dennis. </span></div><div dir="ltr"><span><br clear="none"></span></div><div dir="ltr"><span>I was trying to plot all the nearby pixels (2780/26 and 2781/26 and so on...) in only ONE plot to know the longitudinal extent of the thunderclouds along with their heights. What I am able to see presently is only one/individual cells not as a group of cells. </span></div><div dir="ltr"><span><br clear="none"></span></div><div dir="ltr"><span>for example in the TXT file, I have selected </span></div><div dir="ltr"><span>     Rainrate   NSCAN   NPIX     NLEVEL</span></div><div dir="ltr">    34.97       2797         14         68</div><div dir="ltr">    49.18       2803         28         68</div><div dir="ltr">    30.78       2842         20         68</div><div dir="ltr">    53.60       2846         19         68</div><div dir="ltr">    45.39       2847         19         68</div><div dir="ltr">    32.31       2849         22         68</div><div dir="ltr"><b>    32.62       2870         26         68</b></div><div dir="ltr"><b>    37.04       2871         26         68</b></div><div dir="ltr"><b>    74.36       2872         26         68</b></div><div dir="ltr"><b>    35.24       2873         26         68</b></div><div dir="ltr"><b>    39.35       2875         42         68</b></div><div dir="ltr">    30.52       2903         44         68</div><div dir="ltr"></div><div dir="ltr">    36.93       2911         46         68</div><div dir="ltr"><br clear="none"></div><div dir="ltr">I want to plot all of these points in Bold together in one plot as they are a part of a group. </div><div dir="ltr"><br clear="none"></div><div dir="ltr">thank you. </div></div></div><div><div><div dir="ltr"><br clear="none"></div><div dir="ltr"><span><br clear="none"></span></div><div></div><div> </div><div><br clear="none"></div> <div><br clear="none"><br clear="none"></div><div style="display:block"> <div style="font-family:HelveticaNeue,&quot;Helvetica Neue&quot;,Helvetica,Arial,&quot;Lucida Grande&quot;,sans-serif;font-size:16px"> <div style="font-family:HelveticaNeue,&quot;Helvetica Neue&quot;,Helvetica,Arial,&quot;Lucida Grande&quot;,sans-serif;font-size:16px"><div><div class="h5"> <div dir="ltr"><font face="Arial" size="2"> On Sunday, 21 August 2016 8:16 PM, Dennis Shea &lt;<a rel="nofollow" shape="rect" href="mailto:shea@ucar.edu" target="_blank">shea@ucar.edu</a>&gt; wrote:<br clear="none"></font></div>  <br clear="none"><br clear="none"> </div></div><div><div><div><div dir="ltr"><div><div class="h5">By default,  &#39;gsn_csm_contour&#39; draws and plots each frame.<br clear="none"> <br clear="none">The panel page:<br clear="none">   <a rel="nofollow" shape="rect" href="http://www.ncl.ucar.edu/Applications/panel.shtml" target="_blank">http://www.ncl.ucar.edu/ Applications/panel.shtml</a><br clear="none"><br clear="none"><pre>  Res@gsnDraw  = False           ; don&#39;t draw
  Res@gsnFrame = False           ; don&#39;t advance frame
</pre>...<br clear="none">One approach:<br clear="none"><br clear="none">    Plot = new( 2, &quot;graphic)<br clear="none">    Plot(0) =   gsn_csm_contour(Wks_NPIX_FIX, RF_NPIX_FIX,Res) <br clear="none">    [snip]<br clear="none">    PLot(1) =   gsn_csm_contour(Wks_NPIX_FIX, RF_NPIX_FIX,Res) <br clear="none"><br clear="none">;***************************** *******************<br clear="none">  resP                                = True                 ; modify the panel plot<br clear="none">  resP@gsnMaximize        = True                 ; make large: ps, pdf, eps<br clear="none">; resP@gsnPanelMainString = &quot;A common title&quot;     ; new resource added in NCL V6.4.0<br clear="none">  resP@txString           = &quot;A common title&quot;     ; use this for NCL V6.3.0 and earlier<br clear="none">               <br clear="none">  gsn_panel(wks,Plot,(/2,1/), resP)               ; vertical<br clear="none"></div></div>  gsn_panel(wks,Plot,(/1,2/), resP)               ; horizontal<br clear="none">~<br clear="none"></div><span class=""><div><br clear="none"><div>On Sun, Aug 21, 2016 at 7:55 AM, Geeta Geeta <span dir="ltr">&lt;<a rel="nofollow" shape="rect" href="mailto:geetag54@yahoo.com" target="_blank">geetag54@yahoo.com</a>&gt;</span> wrote:<br clear="none"><blockquote style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div><div><div style="color:rgb(0,0,0);font-family:HelveticaNeue,&quot;Helvetica Neue&quot;,Helvetica,Arial,&quot;Lucida Grande&quot;,sans-serif;font-size:16px;background-color:rgb(255,255,255)"><div dir="ltr"><span>I am plotting the orbital data (rain rate) from TRMM. In this data, lat and lon are itself 2 dim. </span></div><div dir="ltr"><span>Rainrate is a 3 dim variable and is varying as per nscan (data along the swath, 9248), npix (49), and nlevel (80).</span></div><div dir="ltr"><span>   </span></div><div dir="ltr"><span>I have extracted all the points within a domain (5-20N/72-84E) which exceed a rain rate of 30mm/hr.  </span></div><div dir="ltr"><span>I got a number of adjacent points where the rain rate is exceeding the above mentioned threshold (RF.txt20080402 file attached. 1st column is rain rate, 2nd column is NSCAN, 3rd column is NPIX and 4th column is NLEVEL.</span></div><div dir="ltr"><span><br clear="none"></span></div><div dir="ltr"><span>I been able to get a plot of height vs longitudes (nscan) for a fixed point (say 2870/26 where 2870 is nscan and 26 is the npix for which rainrate is more than 30mm/hr..plot attached).</span></div><div dir="ltr"><span> </span></div><div dir="ltr"><span>Now I wish to add ht vs longitude plot for the adjacent point say 2871/26 too in the SAME plot. </span></div><div dir="ltr"><span>But two separate plots are created. </span>I dont know how to go about doing this.  </div><div></div><div> Pls suggest. </div></div></div></div><br clear="none">______________________________ _________________<br clear="none">
ncl-talk mailing list<br clear="none">
<a rel="nofollow" shape="rect" href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a><br clear="none">
List instructions, subscriber options, unsubscribe:<br clear="none">
<a rel="nofollow" shape="rect" href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/ mailman/listinfo/ncl-talk</a><br clear="none">
<br clear="none"></blockquote></div><br clear="none"></div></span></div></div><br clear="none"><br clear="none"></div>  </div> </div>  </div></div></div></div></div></div><span class=""><br clear="none">______________________________ _________________<br clear="none">
ncl-talk mailing list<br clear="none">
<a rel="nofollow" shape="rect" href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a><br clear="none">
List instructions, subscriber options, unsubscribe:<br clear="none">
<a rel="nofollow" shape="rect" href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/ mailman/listinfo/ncl-talk</a><br clear="none">
<br clear="none"></span></blockquote></div><br clear="none"></div></div></div><br><br></div>  </div> </div>  </div></div></div></blockquote></div><br></div><div class="gmail_extra"><br></div></div>