... the user friendly GPS tool


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Bushnell Backtrack D-Tour
#26
Here's an abridged/simplified version of GPS Visualizer's perl code anyway, in case it's useful for someone:

Code:
open(BTK,$file_path);
seek(BTK,24,0); # skip mysterious file header
while (!eof(BTK)) {
    read(BTK,my $type,1); $type = unpack("C",$type);
    if ($type == 3) { # track header
        read(BTK,my $trk_info,8); my ($unknown,$y,$mo,$d,$h,$m,$s) = unpack("c SCC CCC",$trk_info);
        seek(BTK,15,1);
        
        # [do something here with the time info from the header and start a new track]
        
    } else { # type 4 = end of track; type 2 = normal point
        read(BTK,my $temp,1); $temp = unpack("c",$temp)/2 + 20;
        read(BTK,my $number,2); $number = unpack("S",$number);
        read(BTK,my $alt,4); $alt = unpack("l",$alt)/10;
        read(BTK,my $lat,8); $lat = unpack("d",$lat);
        read(BTK,my $lon,8); $lon = unpack("d",$lon);
        
        # [do something here with the point data]
        
    }
}
close(BTK);
Reply


Messages In This Thread
Bushnell Backtrack D-Tour - by Lorry - 25.11.2012, 04:33
RE: Bushnell Backtrack D-Tour - by Oluffen - 05.11.2013, 14:02
RE: Bushnell Backtrack D-Tour - by kumo - 05.11.2013, 23:32
RE: Bushnell Backtrack D-Tour - by Lorry - 06.11.2013, 01:11
RE: Bushnell Backtrack D-Tour - by Oluffen - 06.11.2013, 09:16
RE: Bushnell Backtrack D-Tour - by Oluffen - 07.11.2013, 18:23
RE: Bushnell Backtrack D-Tour - by Lorry - 06.11.2013, 01:08
RE: Bushnell Backtrack D-Tour - by Lorry - 06.11.2013, 16:54
RE: Bushnell Backtrack D-Tour - by Lorry - 06.11.2013, 01:48
RE: Bushnell Backtrack D-Tour - by Oluffen - 06.11.2013, 09:31
RE: Bushnell Backtrack D-Tour - by kumo - 06.11.2013, 09:42
RE: Bushnell Backtrack D-Tour - by kumo - 07.11.2013, 22:24
RE: Bushnell Backtrack D-Tour - by throwaway - 26.04.2014, 18:21
RE: Bushnell Backtrack D-Tour - by Oluffen - 27.04.2014, 12:52
RE: Bushnell Backtrack D-Tour - by throwaway - 27.04.2014, 17:46
RE: Bushnell Backtrack D-Tour - by throwaway - 27.04.2014, 19:27
RE: Bushnell Backtrack D-Tour - by GPSVisualizer - 05.05.2014, 22:57
RE: Bushnell Backtrack D-Tour - by Stanmannus - 06.05.2015, 23:23
RE: Bushnell Backtrack D-Tour - by feima - 23.09.2015, 15:23
RE: Bushnell Backtrack D-Tour - by feima - 23.09.2015, 15:21
RE: Bushnell Backtrack D-Tour - by chuckk - 04.12.2015, 02:44

Forum Jump:


Users browsing this thread: 1 Guest(s)