<div dir="ltr"><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Regarding your second WRF question, I&#39;m not sure what you mean that you have to keep hitting &quot;q&quot;.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">If you run the script with simply:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small"><font face="monospace, monospace">  ncl myscript.ncl</font></div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">where &quot;myscript.ncl&quot; is whatever name you gave the script, then it should run to completion without waiting for any keystrokes.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">--Mary</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5"><div><div dir="ltr"><i><br></i><br><br><div><hr>From: <a href="mailto:rammetro@hotmail.com" target="_blank">rammetro@hotmail.com</a><br>To: <a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a><br>Subject: help ncl script for extraction of station data<br>Date: Tue, 19 Apr 2016 16:59:55 +0200<br><br>


<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><font color="#888888"><br>Ramchandra Karki</font></span></i><span><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>                                               </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>
<br></blockquote></div><br></div>
</blockquote></div><br></div></div>