Skip to content

Instantly share code, notes, and snippets.

@reciprocum
Created August 29, 2016 15:26
Show Gist options
  • Save reciprocum/c0ea81d06f65b4dd23ec82cf7ab4c961 to your computer and use it in GitHub Desktop.
Save reciprocum/c0ea81d06f65b4dd23ec82cf7ab4c961 to your computer and use it in GitHub Desktop.
package pt.karambola.gpx.test;
import pt.karambola.gpx.beans.Gpx;
import pt.karambola.gpx.beans.TrackPoint;
import pt.karambola.gpx.io.GpxFileIo;
public class
GpxTest
{
public static void
main(String[] args)
{
Gpx working = GpxFileIo.parseIn( "res/LeuvenArsene.gpx" ) ;
for (TrackPoint p : working.getTracks().get(0).getTrackPoints()) {
System.out.println(p.getTime());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment