public void toXML(java.io.OutputStream out) throws IOException {
// hack, hack
InvCatalogFactory10 converter = new InvCatalogFactory10();
Element elem = converter.writeGeospatialCoverage(this);
//XMLOutputter outputter = new XMLOutputter(" ", true);
XMLOutputter fmt = new XMLOutputter(Format.getPrettyFormat());
fmt.output(elem, out);
}