<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" id="owaParaStyle"></style>
</head>
<body fpstyle="1" ocsi="0">
<div style="direction: ltr;font-family: Tahoma;color: #000000;font-size: 10pt;">Dear NCL users:
<div><br>
</div>
<div>I have been able to append to an existing netcdf file before easily with an unlimited time dimension. However, something has changed as my old scripts no longer work. I have tried so many combinations unsuccessfully. This seems more difficult than it needs
 to be. So I create the netcdf file with (time, lat, lon) with time unlimited, add variables -- this works fine. However, if I want to append an additional time step or several at once -- no dice. Below is a snip of my code. Note the if condition is the initial
 create, and else condition is the append which fails.</div>
<div><br>
</div>
<div>thanks for the help,</div>
<div>Matt</div>
<div><br>
</div>
<div><br>
</div>
<div>
<div>if (it.eq.0) then</div>
<div><br>
</div>
<div>&nbsp; outncdf = addfile(_outpath&#43;varname&#43;&quot;.nc&quot; ,&quot;c&quot;)</div>
<div>&nbsp; dimNames = (/&quot;time&quot;,&quot;south_north&quot;,&quot;west_east&quot;/)</div>
<div>&nbsp; dimSizes = (/ -1, ny, nx /)</div>
<div>&nbsp; dimUnlim = (/ True, False, False /)</div>
<div>&nbsp; filedimdef(outncdf,dimNames,dimSizes,dimUnlim)</div>
<div><br>
</div>
<div>&nbsp; filevardef(outncdf, &quot;DateTime&quot;, &quot;integer&quot;, getvardims(datetime))</div>
<div>&nbsp; filevarattdef(outncdf, &quot;DateTime&quot;, datetime)</div>
<div><br>
</div>
<div>&nbsp; filevardef(outncdf, varname, &quot;float&quot;, dimNames)</div>
<div>&nbsp; filevarattdef(outncdf, varname, var)</div>
<div><br>
</div>
<div>&nbsp; filevardef(outncdf, &quot;lat&quot;, &quot;float&quot;, getvardims(latm2d))</div>
<div>&nbsp; filevarattdef(outncdf, &quot;lat&quot;, latm2d)</div>
<div><br>
</div>
<div>&nbsp; filevardef(outncdf, &quot;lon&quot;, &quot;float&quot;, getvardims(lonm2d))</div>
<div>&nbsp; filevarattdef(outncdf, &quot;lon&quot;, lonm2d)</div>
<div><br>
</div>
<div>&nbsp; outncdf-&gt;DateTime=(/datetime/)</div>
<div>&nbsp; outncdf-&gt;$varname$=(/var/)</div>
<div>&nbsp; outncdf-&gt;lat=(/latm2d/)</div>
<div>&nbsp; outncdf-&gt;lon=(/lonm2d/)</div>
<div><br>
</div>
<div>else</div>
<div><br>
</div>
<div>&nbsp; outncdf = addfile(_outpath&#43;varname&#43;&quot;.nc&quot; ,&quot;w&quot;)</div>
<div><br>
</div>
<div>&nbsp; outncdf-&gt;time(tcount:) = datetime</div>
<div>&nbsp; ;outncdf-&gt;DateTime(time|tcount:)=(/datetime/)</div>
<div>&nbsp; ;outncdf-&gt;$varname$(time|tcount:,south_north|:,west_east|:)=(/var/)</div>
<div><br>
</div>
<div>&nbsp; outncdf-&gt;DateTime(tcount:)=(/datetime/)</div>
<div>&nbsp; outncdf-&gt;$varname$(tcount:,:,:)=(/var/)</div>
<div><br>
</div>
<div>end if</div>
</div>
<div><br>
</div>
</div>
</body>
</html>