1 2# Destinator POI 3gpsbabel -i gpx -f ${REFERENCE}/expertgps.gpx -o destinator_poi -F ${TMPDIR}/destinator_poi.dat 4gpsbabel -i destinator_poi -f ${TMPDIR}/destinator_poi.dat -w -o unicsv,utc=0 -F ${TMPDIR}/destinator_poi.txt 5compare ${REFERENCE}/destinator_poi.txt ${TMPDIR}/destinator_poi.txt 6 7# Destinator Itinerary 8gpsbabel -i gpx -f ${REFERENCE}/expertgps.gpx -o destinator_itn -F ${TMPDIR}/destinator_itn.dat 9gpsbabel -i destinator_itn -f ${TMPDIR}/destinator_itn.dat -r -o unicsv,utc=0 -F ${TMPDIR}/destinator_itn.txt 10compare ${REFERENCE}/route/destinator_itn.txt ${TMPDIR}/destinator_itn.txt 11 12# Destinator TrackLog 13gpsbabel -i nmea -f ${REFERENCE}/track/nmea+ms.txt -o destinator_trl -F ${TMPDIR}/destinator_trl.dat 14gpsbabel -i destinator_trl -f ${TMPDIR}/destinator_trl.dat -t -o unicsv,utc=0 -F ${TMPDIR}/destinator_trl.txt 15compare ${REFERENCE}/track/destinator_trl.txt ${TMPDIR}/destinator_trl.txt 16 17