<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><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>&nbsp; &nbsp; ; -------------- &nbsp;LOAD FUNCTIONS AND PROCEDURES ----------------</div><div><br></div><div>&nbsp; &nbsp; load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"</div><div>&nbsp; &nbsp; load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"</div><div>&nbsp; &nbsp; load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl"</div><div>&nbsp; &nbsp; load "$NCARG_ROOT/lib/ncarg/nclscripts/wrf/WRFUserARW.ncl"</div><div><br></div><div>&nbsp; &nbsp; ; -------------- &nbsp;BEGINING OF NCL SCRIPT ----------------</div><div>begin</div><div>DATADir = "/mnt/gpfs1/data/private/fgvy024/Build_WRF/WRFV3/run/"</div><div>FILES = systemfunc (" ls -1 " + DATADir + "wrfout_d03* ")</div><div>numFILES = dimsizes(FILES)</div><div>a = addfiles(FILES+".nc","r")</div><div>;times = wrf_user_list_times(a) &nbsp; &nbsp; ; get times in the file</div><div>ntimes = 4320 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;; number of times in the file</div><div>temp = new(ntimes,float)&nbsp;</div><div>do it = 0, ntimes-1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ;Loop for the time:&nbsp;</div><div>time = it</div><div>;************************************************</div><div>&nbsp;; &nbsp;- Select lon &amp; lat of the point of interest -</div><div>&nbsp;;************************************************</div><div>&nbsp; ; - 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 &nbsp;;phakding</div><div>Longitude = 86.81278</div><div>res = True &nbsp; &nbsp; &nbsp;</div><div>res@returnInt = True &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>point = wrf_user_ll_to_ij(a,Longitude,Latitude,res)&nbsp;</div><div>x = point(0)-1</div><div>y = point(1)-1</div><div>;tc2 = wrf_user_getvar(a,"HGT",it) &nbsp; &nbsp; ; heigth extraction</div><div>tc2 = wrf_user_getvar(a,"T2",it) &nbsp; &nbsp; &nbsp; ; temp extraction</div><div>tc2 = tc2 -273.16</div><div><br></div><div>temp(it) = tc2(y,x)&nbsp;</div><div>end do</div><div><br></div><div>&nbsp; &nbsp; npts=ntimes</div><div>&nbsp; &nbsp; fName = "pyramid_1km.txt"</div><div>&nbsp; &nbsp; data &nbsp;= new( npts, "string")</div><div>&nbsp; &nbsp; &nbsp; &nbsp;</div><div>&nbsp; &nbsp; &nbsp;</div><div>&nbsp; &nbsp; print(" &nbsp;Time &nbsp; &nbsp; &nbsp;temp &nbsp; &nbsp; &nbsp; ")</div><div>&nbsp; &nbsp; &nbsp;</div><div>&nbsp; &nbsp; do it = 0, ntimes-1 ;ntimes-1</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; print (sprintf("%5.0f",it) &nbsp; &nbsp;+" " \</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; +sprintf("%21.2f", temp(it)) +" &nbsp;" )</div><div><br></div><div>&nbsp; &nbsp; end do &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; end of time loop</div><div><br></div><div>&nbsp; &nbsp; do it = 0,ntimes-1 ;ntimes-1</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp;data (it)= (sprintf("%5.0f",it) &nbsp; &nbsp;+" " \</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; +sprintf("%21.2f", temp(it)) +" &nbsp;" &nbsp;)</div><div><br></div><div>&nbsp;end do &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; end of time loop</div><div>&nbsp;asciiwrite (fName , data)</div><div>end</div><i><div><i><br></i></div>Regards<br>Ramchandra Karki</i><div><i>PhD Student, &nbsp;</i></div><div><i>Institute of Geography,&nbsp;</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></div>                                               </div></body>
</html>