(This is another technical tutorial intended less for the friends list and more for the confused users out there googling for help)
The Forerunner is more ultra-fancy pedometer than navigation system, but since it runs by GPS, it can perform amazing feats of navigation too, limited by a UI intended more for athletic training than navigation and, of course, the tiny screen needed to fit on the wrist.
It is possible to define a route and upload it to the Forerunner, and let it tell you which way to go and when a turn is coming up using the Navigation/Route mode.
You can define a path in Google Earth, using Add Path and clicking out a series of waypoints. Once done, right-click on the path in the "places" list and select "save place as" and save it in kml form. Now the trick is converting that into something the Forerunner will accept as a route.
This will transform the trackpoints into routepoints and upload them as a route. You do seem to lose the name of the route in the process. It does, at least, seem to work.
The Forerunner is more ultra-fancy pedometer than navigation system, but since it runs by GPS, it can perform amazing feats of navigation too, limited by a UI intended more for athletic training than navigation and, of course, the tiny screen needed to fit on the wrist.
It is possible to define a route and upload it to the Forerunner, and let it tell you which way to go and when a turn is coming up using the Navigation/Route mode.
You can define a path in Google Earth, using Add Path and clicking out a series of waypoints. Once done, right-click on the path in the "places" list and select "save place as" and save it in kml form. Now the trick is converting that into something the Forerunner will accept as a route.
gpsbabel -i kml -f YourRoute.kml -x transform,rte=trk,del -r -o garmin -F usb:
This will transform the trackpoints into routepoints and upload them as a route. You do seem to lose the name of the route in the process. It does, at least, seem to work.
Garmin Forerunner 305 location limit
Date: 2008-06-19 10:16 pm (UTC)Garmin Upload
Date: 2008-06-25 03:32 pm (UTC)Thanks
Re: Garmin Upload
Date: 2008-06-26 01:24 am (UTC)Route simplification
Date: 2009-03-10 04:24 am (UTC)The routes I manually create in Google Earth and those I record on the Forerunner often exceed the curiously low 100 point limit for routepoints. I've found that the easiest way to simplify them is to use the following option in gpsbabel:
-x simplify,count=95
Here I limit the route to 95 points to give me the option to save a few interesting points as I follow the route without having to delete existing ones.
The option seems to do a pretty good job but in order to check I also save the simplified route as a KML file so I can compare the two in Google Earth:
-o kml,points=0 -F test_simplify.kml
Note that I specify that there are no placemarks as this tends to clutter the display.
Thus an example full usage is:
gpsbabel -i kml -f test.kml -x transform,rte=trk,del -x simplify,count=95 -o kml,points=0 -F test_simplify.kml -r -o garmin -F usb:
Hope you find this useful
Simon
no subject
Date: 2013-02-17 12:18 am (UTC)