<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none"><!-- p { margin-top: 0px; margin-bottom: 0px; }--></style>
</head>
<body dir="ltr" style="font-size:12pt;color:#000000;background-color:#FFFFFF;font-family:Calibri,Arial,Helvetica,sans-serif;">
<p><br>
</p>
<div dir="ltr" style="font-size:12pt; color:#000000; background-color:#FFFFFF; font-family:Calibri,Arial,Helvetica,sans-serif">
<div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:16px; margin-top:0px; margin-bottom:0px">
Hi everyone</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:16px; margin-top:0px; margin-bottom:0px">
<br>
</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:16px; margin-top:0px; margin-bottom:0px">
I am running NCL version 6.1.0. I have to write output from&nbsp;multiple&nbsp;netcdf&nbsp;file into the ascii fromat containing wind speed comparison at a particular latitude and longitude.This&nbsp;aim is to get&nbsp;the comparison&nbsp;from the wrf ouput and the instrument at a&nbsp;particular
 location. The netcdf files are from the instrument but are not in the regular netcdf format meaning that the time is not included in the dimensions of the variables&nbsp; to be extracted&nbsp; and each file contains one value of time.&#8203;The first problem that I am facing
 is that the fill value is not getting deleted in the ascii output.I use the following to generated the ascii output .<br>
</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:16px; margin-top:0px; margin-bottom:0px">
<br>
</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:16px; margin-top:0px; margin-bottom:0px">
b=addfile(&quot;/20090711/20090711_000239_01_g.nc&quot;,&quot;r&quot;)<br>
lon=b-&gt;yp(0,0,:)<br>
lat=b-&gt;xp(0,:,0)</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:16px; margin-top:0px; margin-bottom:0px">
DATADir = &quot;./&quot;<br>
fils = systemfunc (&quot; ls -1 &quot; &#43; DATADir &#43; &quot;/20090711* &quot;)&nbsp;<br>
numfils = dimsizes(fils) &nbsp;<br>
do j = 0,numfils-1,1<br>
a = addfiles(fils(j)&#43;&quot;.nc&quot;,&quot;r&quot;)<br>
time=a[:]-&gt;time</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:16px; margin-top:0px; margin-bottom:0px">
::::::::::::::</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:16px; margin-top:0px; margin-bottom:0px">
::::::::::&#8203;<br>
</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:16px; margin-top:0px; margin-bottom:0px">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; npt&nbsp; = npt &#43; 1&nbsp; &nbsp;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; data(npt) = sprinti(&quot;%0.5i&quot;, (npt&#43;1) ) &nbsp;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; data(npt) = data(npt) &#43; sprintf(&quot;%7.1f &quot;,lat(nl))<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; data(npt) = data(npt) &#43; sprintf(&quot;%7.1f &quot;,lon(ml))</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:16px; margin-top:0px; margin-bottom:0px">
&nbsp; &nbsp; &nbsp; do nt=0,ntim-1<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; data(npt) = data(npt) &#43; sprintf(&quot;%10.3f &quot;, x(nt))</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:16px; margin-top:0px; margin-bottom:0px">
data(npt) = data(npt) &#43; sprintf(&quot;%7.1f &quot;,u1(nt,nl,ml))</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:16px; margin-top:0px; margin-bottom:0px">
data(npt) = data(npt) &#43; sprintf(&quot;%7.1f &quot;,v1(nt,nl,ml))<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; end do<br>
&nbsp;&nbsp;&nbsp; end do<br>
&nbsp; end do<br>
&nbsp; asciiwrite (fName , data)</div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:16px; margin-top:0px; margin-bottom:0px">
&#8203;In this way I get the output that is attached .<span style="font-family:Tahoma; font-size:13px">Any help to correct this code will be appreciated</span></div>
<p><br>
</p>
<p><br>
</p>
<div id="Signature">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px"><b><br>
</b></div>
<div style="font-family:Tahoma; font-size:13px"><b>Regards</b></div>
<div style="font-family:Tahoma; font-size:13px"><b>Muhammad Omer Mughal</b>
<div><b>Department of Applied Physics</b></div>
<div><br>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>