<div dir="ltr">NCL team,<div><br></div><div>Here is the ncdump -s of an actual Netcdf-4 classic file made with ncgen:</div><div><br></div><div><div>netcdf simple {</div><div>dimensions:</div><div>    lon = 4 ;</div><div>    lat = 3 ;</div><div>    time = UNLIMITED ; // (5 currently)</div><div>variables:</div><div>    float lat(lat) ;</div><div>        lat:_Storage = &quot;contiguous&quot; ;</div><div>    float lon(lon) ;</div><div>        lon:_Storage = &quot;contiguous&quot; ;</div><div>    double time(time) ;</div><div>        time:_Storage = &quot;chunked&quot; ;</div><div>        time:_ChunkSizes = 5 ;</div><div><br></div><div>// global attributes:</div><div>        :_Format = &quot;netCDF-4 classic model&quot; ;</div><div>data:</div><div><br></div><div> lat = _, _, _ ;</div><div><br></div><div> lon = _, _, _, _ ;</div><div><br></div><div> time = _, _, _, _, _ ;</div><div>}</div></div><div><br></div><div>This file can also be made with custom C code using the Netcdf-C API.  Is it possible to create this exact file with NCL?  In particular:</div><div><br></div><div>* Can the storage method &quot;contiguous&quot; be selected?</div><div><br></div><div>* For chunked variables, is it possible to omit the special attributes _DeflateLevel, _Shuffle, and _Endianness, as this file demonstrates?</div><div><br></div><div>My objective is simply to reduce clutter in file dumps.  NCL always adds _DeflateLevel = 0 by default.  I am aware that this is functionally equivalent to contiguous.</div><div><br></div><div>--Dave</div></div>