track.trackSegs.add(linkedList);
data.tracks.add(track);
}
data.waypoints = linkedList;
OutputStream out = new FileOutputStream(file);
GpxWriter writer = new GpxWriter(out);
writer.write(data);
out.close();
} catch (UnsupportedEncodingException e) {
log.error("Error al escribir el gpx en el fichero temporal.", e);
setError("Error al escribir el gpx en el fichero temporal.");
} catch (IOException e) {