Skip to content

Commit

Permalink
undo tmp gpx name
Browse files Browse the repository at this point in the history
  • Loading branch information
afischerdev committed Jan 30, 2024
1 parent b3002a7 commit 91ccb85
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions brouter-core/src/main/java/btools/router/FormatGpx.java
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,7 @@ public String formatAsGpx(BufferedWriter sb, OsmTrack t) throws IOException {
sb.append(" <wpt lon=\"").append(formatILon(hint.ilon)).append("\" lat=\"")
.append(formatILat(hint.ilat)).append("\">")
.append(hint.selev == Short.MIN_VALUE ? "" : "<ele>" + (hint.selev / 4.) + "</ele>")
.append("<name>P")
.append(""+hint.indexInTrack+"_")
.append("<name>")
.append(hint.getMessageString())
.append("</name>")
.append("<extensions><locus:rteDistance>").append("" + hint.distanceToNext).append("</locus:rteDistance>");
Expand Down

0 comments on commit 91ccb85

Please sign in to comment.