<div dir="ltr"><div><div><div>Not totally sure I understand -- it sounds like you are having to &quot;press q&quot; because the output is paged (displaying one page at a time)?  If that&#39;s the case, you can invoke ncl with a &quot;-q&quot; switch to disable paging:<br><br></div>    ncl -q myscript.ncl<br><br></div>Hope that helps...<br></div>Rick<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Apr 19, 2016 at 8:59 AM, Ramchandra Karki <span dir="ltr">&lt;<a href="mailto:rammetro@hotmail.com" target="_blank">rammetro@hotmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


<div><div dir="ltr">Dear NCL group,<div>I tried to extract hourly air temperature data from wrf out and used the following scripts. would you figure out if there is any errors in it because when i run it it stops with showing time information and then pressing q several times it can execute the script but it is too time consuming and difficult to work because i have to press q for the size of times in file. I look foward for kind response</div><div><br></div><div><br><div>    ; --------------  LOAD FUNCTIONS AND PROCEDURES ----------------</div><div><br></div><div>    load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl&quot;</div><div>    load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl&quot;</div><div>    load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl&quot;</div><div>    load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/wrf/WRFUserARW.ncl&quot;</div><div><br></div><div>    ; --------------  BEGINING OF NCL SCRIPT ----------------</div><div>begin</div><div>DATADir = &quot;/mnt/gpfs1/data/private/fgvy024/Build_WRF/WRFV3/run/&quot;</div><div>FILES = systemfunc (&quot; ls -1 &quot; + DATADir + &quot;wrfout_d03* &quot;)</div><div>numFILES = dimsizes(FILES)</div><div>a = addfiles(FILES+&quot;.nc&quot;,&quot;r&quot;)</div><div>;times = wrf_user_list_times(a)     ; get times in the file</div><div>ntimes = 4320            ; number of times in the file</div><div>temp = new(ntimes,float) </div><div>do it = 0, ntimes-1                 ;Loop for the time: </div><div>time = it</div><div>;************************************************</div><div> ;  - Select lon &amp; lat of the point of interest -</div><div> ;************************************************</div><div>  ; - The function wrf_user_ll_to_ij find the nearest grid point for a specific lat and lon</div><div><br></div><div>Latitude = 27.959167  ;phakding</div><div>Longitude = 86.81278</div><div>res = True      </div><div>res@returnInt = True                       </div><div>point = wrf_user_ll_to_ij(a,Longitude,Latitude,res) </div><div>x = point(0)-1</div><div>y = point(1)-1</div><div>;tc2 = wrf_user_getvar(a,&quot;HGT&quot;,it)     ; heigth extraction</div><div>tc2 = wrf_user_getvar(a,&quot;T2&quot;,it)       ; temp extraction</div><div>tc2 = tc2 -273.16</div><div><br></div><div>temp(it) = tc2(y,x) </div><div>end do</div><div><br></div><div>    npts=ntimes</div><div>    fName = &quot;pyramid_1km.txt&quot;</div><div>    data  = new( npts, &quot;string&quot;)</div><div>       </div><div>     </div><div>    print(&quot;  Time      temp       &quot;)</div><div>     </div><div>    do it = 0, ntimes-1 ;ntimes-1</div><div><br></div><div>        print (sprintf(&quot;%5.0f&quot;,it)    +&quot; &quot; \</div><div>          +sprintf(&quot;%21.2f&quot;, temp(it)) +&quot;  &quot; )</div><div><br></div><div>    end do                     ; end of time loop</div><div><br></div><div>    do it = 0,ntimes-1 ;ntimes-1</div><div><br></div><div>       data (it)= (sprintf(&quot;%5.0f&quot;,it)    +&quot; &quot; \</div><div>          +sprintf(&quot;%21.2f&quot;, temp(it)) +&quot;  &quot;  )</div><div><br></div><div> end do                     ; end of time loop</div><div> asciiwrite (fName , data)</div><div>end</div><i><div><i><br></i></div>Regards<span class="HOEnZb"><font color="#888888"><br>Ramchandra Karki</font></span></i><span class="HOEnZb"><font color="#888888"><div><i>PhD Student,  </i></div><div><i>Institute of Geography, </i><i style="font-size:12pt">University of Hamburg</i></div><div><i style="font-size:12pt">Bundesstrase 55, Hamburg Germany</i></div><div><i><br></i></div></font></span></div>                                               </div></div>
<br>_______________________________________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu">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>
<br></blockquote></div><br></div>