org.openstreetmap.josm.data.gpx
Interface GpxTrack
- All Known Implementing Classes:
- ImmutableGpxTrack
public interface GpxTrack
Read-only gpx track. Implementations doesn't have to be immutable, but should always be thread safe.
getSegments
java.util.Collection<GpxTrackSegment> getSegments()
getAttributes
java.util.Map<java.lang.String,java.lang.Object> getAttributes()
getBounds
Bounds getBounds()
length
double length()
getUpdateCount
int getUpdateCount()
- Returns:
- Number of times this track has been changed. Always 0 for read-only tracks
JOSM