<div dir="ltr">As my earlier post had no heading, I am reposting the same in the hope that it may be seen and I can get help.<br>
I hope someone can find time to explain to me a few things on panel plots.<br>
In the <a href="http://panles_demo.gs" target="_blank">panles_demo.gs</a> (snippet below),I do not understand the following:<br>
<br>
1. for four plots on a page I loop through p=1 to p=4, why do we display t<br>
(I want to display what I have in my file;<br>
2. what is the global variable defined by _vpg.p in this script?<br>
3. How do I put a title corresponding to the graphic validity time, on each<br>
plot?<br>
Help will be appreciated.<br>
Zilore Mumba<br>
<br>
  rc = gsfallow(&quot;on&quot;)<br>
  if (args=&#39;&#39;)<br>
    say &#39;Two arguments are required: the # of rows and # of columns&#39;<br>
    return<br>
  else<br>
    nrows = subwrd(args,1)<br>
    ncols = subwrd(args,2)<br>
  endif<br>
<br>
  &#39;use wrfout_d01_2013-07-27_00.ctl&#39;<br>
  &#39;reset&#39;<br>
  panels(args)<br>
  p = 1<br>
  ptot = nrows * ncols<br>
  &#39;set mproj scaled&#39;<br>
<br>
* Loop through each panel and draw a plot<br>
  while (p &lt;= ptot)<br>
    _vpg.p<br>
    &#39;set t &#39;p<br>
    &#39;set grads off&#39;<br>
    &#39;d t&#39;<br>
    p = p + 1<br>
  endwhile<br>
</div>