The Navit-textfile contains Latitude, Longitude and the kind of Point (trackpoint most). This is, what measured with gps.
In navit.xml you shoul do this, to store the measured points after vehicle name..:
Code:
<vehicle name="Local GPS" profilename="bike" enabled="yes" active="1" source="android:" follow="1">
<!-- Navit can write a tracklog in several formats (gpx, nmea or textfile): -->
<log enabled="yes" type="textfile" data="/sdcard/navit/logs/track_%Y%m%d-%%i_nav.txt" flush_size="1000" flush_time="30">
And then, there is the debug-textfile. There are lat. and lon. in hexadecimal-form. This is the route itsself, with announcements-text at the point, where something was said.
Code:
<log enabled="yes" type="textfile_debug" data="/sdcard/navit/logs/debug_%Y%m%d-%%i.txt" flush_size="1024" flush_time="30"/>
Its in navit.xml, you need only set enabled to yes.
Route-Guard is another thing. There, in the file you have to type in lat.+ lon.
I hope, its right.