<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("on")<br>
if (args='')<br>
say 'Two arguments are required: the # of rows and # of columns'<br>
return<br>
else<br>
nrows = subwrd(args,1)<br>
ncols = subwrd(args,2)<br>
endif<br>
<br>
'use wrfout_d01_2013-07-27_00.ctl'<br>
'reset'<br>
panels(args)<br>
p = 1<br>
ptot = nrows * ncols<br>
'set mproj scaled'<br>
<br>
* Loop through each panel and draw a plot<br>
while (p <= ptot)<br>
_vpg.p<br>
'set t 'p<br>
'set grads off'<br>
'd t'<br>
p = p + 1<br>
endwhile<br>
</div>