Changeset 13765 in osm
- Timestamp:
- 2009-02-16T22:53:14+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/tcxplugin/src/org/openstreetmap/josm/io/TcxReader.java
r13764 r13765 122 122 */ 123 123 private void parseDataFromActivities(TrainingCenterDatabaseT tcd) { 124 int lap = 0; 124 125 if ((tcd.getActivities() != null) 125 126 && (tcd.getActivities().getActivity() != null)) { … … 142 143 if (waypt != null) { 143 144 if (startTime != null) { 144 waypt.attr.put("name", 145 startTime146 .toString());145 waypt.attr.put("name", "LAP" 146 + (++lap)); 147 gpxData.waypoints.add(waypt); 147 148 startTime = null; 148 149 }
Note:
See TracChangeset
for help on using the changeset viewer.