Changeset 13765 in osm


Ignore:
Timestamp:
2009-02-16T22:53:14+01:00 (16 years ago)
Author:
skela
Message:

tcxplugin: Convert the first points of laps to waypoints named LAP1, LAP2, ...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/tcxplugin/src/org/openstreetmap/josm/io/TcxReader.java

    r13764 r13765  
    122122     */
    123123    private void parseDataFromActivities(TrainingCenterDatabaseT tcd) {
     124        int lap = 0;
    124125        if ((tcd.getActivities() != null)
    125126                && (tcd.getActivities().getActivity() != null)) {
     
    142143                                        if (waypt != null) {
    143144                                            if (startTime != null) {
    144                                                 waypt.attr.put("name",
    145                                                                startTime
    146                                                                .toString());
     145                                                waypt.attr.put("name", "LAP"
     146                                                               + (++lap));
     147                                                gpxData.waypoints.add(waypt);
    147148                                                startTime = null;
    148149                                            }
Note: See TracChangeset for help on using the changeset viewer.