try {
NetcdfDatasetInfo ncDI = new NetcdfDatasetInfo("thredds:"+ds.getCatalogUrl());
log.info("Coordinate systems builder is "+ncDI.getConventionUsed());
if (!ncDI.getConventionUsed().equals("None")) {
Document doc = ncDI.makeDocument();
Element coords = doc.detachRootElement();
log.info("Coordinate systems of dataset are: \n"+Xml.getString(coords));
setCoordsStyleSheet(isCollection);
addKeywordsAndDataParams(coords, md);
foundNetcdfInfo = true;
} else {