This is a static archive of our old OpenStreetMap Help Site. Please post any new questions and answers at community.osm.org.

[closed] How to import a gpx without time tags?

0

I'm trying to import tracks logged with Marble on Nokia N900 but OSM doesn't accept nor KML neither GPX with no <time> tags that I'm getting after converting with gpsbabel.

asked 24 Oct '12, 18:30

int_ua's gravatar image

int_ua
27591221
accept rate: 0%

closed 10 Mar '13, 21:32

aseerel4c26's gravatar image

aseerel4c26 ♦
32.6k18248554


One Answer:

0

I've used faketime option while converting:

for file in *; do gpsbabel -i kml -f $file -x track,faketime=20120901000001 -o gpx -F ${file}.gpx; done

answered 24 Oct '12, 18:57

int_ua's gravatar image

int_ua
27591221
accept rate: 0%

Source code available on GitHub .