Changeset 13500 in osm


Ignore:
Timestamp:
2009-02-01T23:12:38+01:00 (16 years ago)
Author:
skela
Message:

applications/editors/josm/plugins/tcxplugin:

TcxReader.parseDataFromActivities(): Name the first waypoint of each
lap with the StartTime attribute of the Lap element. In this way, the
menu item "Markers From Named Points" of the generated GPX layer can be
used for indicating the points where the Lap button was pressed.

File:
1 edited

Legend:

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

    r13499 r13500  
    125125                    for (ActivityLapT activityLap : activity.getLap()) {
    126126                        if (activityLap.getTrack() != null) {
     127                            XMLGregorianCalendar startTime = activityLap
     128                                    .getStartTime();
    127129                            GpxTrack currentTrack = new GpxTrack();
    128130                            gpxData.tracks.add(currentTrack);
     
    136138
    137139                                        if (waypt != null) {
     140                                            if (startTime != null) {
     141                                                waypt.attr.put("name",
     142                                                               startTime
     143                                                               .toString());
     144                                                startTime = null;
     145                                            }
     146
    138147                                            currentTrackSeg.add(waypt);
    139148                                        }
Note: See TracChangeset for help on using the changeset viewer.