final CoordinateOperation op = ReferencingFactoryFinder.getCoordinateOperationFactory(null)
.createOperation(crs2D, DefaultGeographicCRS.WGS84);
bounds = CRS.transform(op, bounds, null);
}
final AngleFormat fmt = new AngleFormat("DD°MM.m'");
fmt.format(new Latitude(bounds.getMinY()), buffer, null).append('-');
fmt.format(new Latitude(bounds.getMaxY()), buffer, null).append(' ');
fmt.format(new Longitude(bounds.getMinX()), buffer, null).append('-');
fmt.format(new Longitude(bounds.getMaxX()), buffer, null);
return buffer.toString();
} catch (TransformException e) {
exception = e;