private final SaxXMLWriter xw;
private final NumberFormat cf;
public GPXWriter(OutputStream out) throws OVLVisitorException {
try {
xw = new SaxXMLWriter(out, "UTF-8",
"http://www.topografix.com/GPX/1/1");
final DecimalFormat dcf = new DecimalFormat("00.000000");
final DecimalFormatSymbols sym = dcf.getDecimalFormatSymbols();
sym.setDecimalSeparator('.');
dcf.setDecimalFormatSymbols(sym);