![]() |
Sharing Garmin code
Hi,
This is a quick Perl hack used to convert the Garmin data file into text records that can be loaded into excel. Once in excel, macros can convert and reduce the data to useable representations: #!/usr/bin/perl # # trace <file> # # This program decodes a Garmin nuvi trace data file. # Found in the GARMIN\GPS\Current.gpx file. # open(FH, "<Current.gpx"); # Get the file # while ($line = <FH>) # Read all lines { printf("%d\tlength\n", length($line)); # Report size # # Convert raw block into records # $cc = index($line, ">"); # Find end of first record while ($cc >= 0) # Pass through until all records found { $cc+=1; # Add ending, delimiter character printf("%d\t%s\n", $cc, substr($line, 0, $cc)); # Each field $line = substr($line, $cc, length($line)); # Grab rest $cc = index($line, ">"); # Find end of next record } if ( length($line) > 0 ) # Check for any left-over text { printf("%d\t%s\n", length($line), $line); # Finish } printf("\n"); # Extra space to improve readibility } close(FH); # Done with file # end source There appears to be two legacy XML constructs that include a binary "NULL" character. This causes the read loop to see three blocks of text, not one huge block. Regardless, these legacy text are written as text records even though I don't have any use for them. Macintosh and Linux systems have Perl but a Windows user may need to find a Perl system. The typical scenario is:
time_stamp - day and fractionAnother routine will extract the way-points with the names and X and Y axis miles. Eventually, I'll combine the trace data with the checkpoint so we can identify the start of each "coast down" segment, the ultimate goal. Bob Wilson |
Thanks Bob, I assume you are talking about a GPS here :)
Just a suggestion, if the destination is Excel, that perl code would probably translate into an excel macro (read the raw garmin file straight from excel) and might be a bit more user friendly as you can avoid copy/convert/install perl steps. |
1 Attachment(s)
It looks like gpx is a standard XML schema based format, can be read directly by most anything these days without writing your own parser or resorting to perl ;)
for this excel example I had a gpx file at c:\tmp.gpx (actually I just saved http://www.topografix.com/fells_loop.gpx since I don't have a gps) I went into Excel then hit: Data->Import External Data->New Web Query Then for address I put in the location of the gpx file: file:///C:/tmp.gpx And then I was looking at tons of data :) I had to scroll right to see the parts that change since it is expanded to rows. fyi, using excel 2002 |
I appreciate the heads up on excel. With my older excel, I get just three rows and a fraction of the data.
The problem with most spreadsheets is a limit on the number of rows, typically 64k rows. The browser Camino performs the xml parsing perfectly and I could probably cut-and-paste into excel but that doesn't solve the scaling problem. The Perl program reduces the number of rows (aka, records) from 7,122 to 1,158 and this was just one day's worth of data, four trips. A full tank or more of data could easily exceed the analysis capacity of any spreadsheet. But I think you've suggested an excellent, parallel approach. It sounds as if the more recent spreadsheets with xml parsing could import Garmin xml data directly. With a well crafted set of macros, the spreadsheet could identify the 'coast down' data and solve the data recording problem of 'coast down' testing. Sad to say, my old excel won't be able to help. Bob Wilson |
1 Attachment(s)
Hi,
Here is the latest source code for my Perl script. It now takes a P1 argument to open a specific file. GOOD LUCK! Bob Wilson |
I'm glad to see the interest in things computer, but perl is not the best choice for xml schema handling, or arguably much else. Here is a python example of reading gpx and making csv files out of them.
Python and XML -- by Mike Hostetler , The program is trivial in python (this is the whole thing, I just use php tags cuz it looks pretty, it is python), worked as-is for me: PHP Code:
Code:
42.438878,-71.119277,5066 |
Thanks!
I'm not one to worry too much about which language is used but I do have a couple of suggestion-questions:
Bob Wilson |
I would love to see a real data file. I looked at the gpx schema data definiton(s) at http://www.topografix.com/GPX/1/0/gpx.xsd but did not see any elements named "trip", maybe "trip" is a data value?
here it is with ele added, (and updated for python 2.5+) had to make the ele append conditional because one entry didn't have it, which is legal because ele is defined as minOccurs="0" in the xsd (as is "name" BTW). These are data from waypoints, identified by wpt tags in the xml. PHP Code:
installed python 2.6.2 (msi) Download Python Software created a working directory saved the code to gpx.py in the working dir saved the .gpx data file to the same directory as everything.gpx ran: gpx.py from the working dir output: C:\Python26\wip>gpx.py 42.438878,-71.119277,5066,44.586548 42.439227,-71.119689,5067,57.607200 42.438917,-71.116146,5096,44.826904 42.443904,-71.122044,5142,50.594727 42.447298,-71.121447,5156,127.711200 42.454873,-71.125094,5224,96.926400 42.459079,-71.124988,5229,82.600800 ... |
If you want to move to the dark side and get a TomTom, TripMaster is an easy to use addon program that does all of this and can store into in a variety of formats.
|
Here is an example of my output:
$ ./trace Current.gpx -1 Bob Work 34.726111 -86.664279 -0.110000 -1 Coast 01 34.667243 -86.588927 168.840000 -1 Coast 02 34.662488 -86.597305 167.870000 -1 Coast 03 34.638889 -86.628989 175.080000 -1 Coast 04 34.609462 -86.630221 178.450000 -1 Coast 05 34.601898 -86.630350 177.250000 -1 Coast 06 34.628383 -86.629168 172.920000 -1 Dr Haynes 36.155062 -86.801553 114.040000 -1 Duckworth 34.691953 -86.572217 193.350000 -1 Hair Care Lifestyles 34.661346 -86.540009 192.630000 -1 Home 34.652834 -86.571580 184.220000 -1 I-565 W 34.717527 -86.637090 -0.110000 -1 Propst 34.738917 -86.575751 -0.110000 -1 Saigon 34.680198 -86.747715 189.980000 0 2009-04-12 17:09:08 34.653001 -86.572144 182.700000 0 2009-04-12 17:09:34 34.652971 -86.571829 177.000000 0 2009-04-12 17:09:46 34.652704 -86.571851 176.500000 0 2009-04-12 17:09:49 34.652696 -86.571843 177.000000 0 2009-04-12 17:09:57 34.652682 -86.572242 173.100000 0 2009-04-12 17:10:12 34.652682 -86.573432 165.900000 The first entries tagged "-1" are waypoints. The ones with "-0.11" altitude are manual entries. Then comes the first data track. In the XML, this is what I look for: <trk> <name>ACTIVE LOG: 12 APR 2009 12:09</name> − <trkseg> − <trkpt lat="34.653001" lon="-86.572144"> <ele>182.79</ele> <time>2009-04-12T17:09:08Z</time> </trkpt> − <trkpt lat="34.652971" lon="-86.571829"> <ele>177.02</ele> <time>2009-04-12T17:09:34Z</time> </trkpt> − <trkpt lat="34.652704" lon="-86.571851"> <ele>176.54</ele> <time>2009-04-12T17:09:46Z</time> </trkpt> − <trkpt lat="34.652696" lon="-86.571843"> <ele>177.02</ele> <time>2009-04-12T17:09:49Z</time> </trkpt> − <trkpt lat="34.652682" lon="-86.572242"> <ele>173.17</ele> . . . Bob Wilson |
All times are GMT -4. The time now is 10:41 PM. |
Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Content Relevant URLs by vBSEO 3.5.2
All content copyright EcoModder.com