if (ncfile.getId() != null)
out.format(" id='%s'%n", StringUtil.quoteXmlAttribute(ncfile.getId()));
if (ncfile.getTitle() != null)
out.format(" title='%s'%n", StringUtil.quoteXmlAttribute(ncfile.getTitle()));
writeNcMLGroup(ncfile, ncfile.getRootGroup(), out, new Indent(2), showValues);
out.format("</netcdf>%n");
out.flush();
}