GPS GPX output files

Yamaha FJR Motorcycle Forum

Help Support Yamaha FJR Motorcycle Forum:

This site may earn a commission from merchant affiliate links, including eBay, Amazon, and others.

Roy Epperson

Well-known member
Joined
Apr 7, 2008
Messages
538
Reaction score
16
Location
Santa Barbara, Ca
Several years ago (before me moved and stopped riding as much), I developed a Java Applet to read GPX formatted output from GPSs, It provided an interactive plot of the tracks and routes on Google Maps and plotted the elevation vs distance. Never did anything with it as Google's licensing fees for using their API was prohibitive for a non-commercial / hobby project was outrageous for the number of "hits" to do anything useful.

Recently, I got looking for a "project" to do and came across several "open source" GIS APIs and GIS databases which make the project doable. I have a prototype working on my local server using the GPX files I have from the Western US. I'm not ready to host it on my website yet as I've just "proved to myself" that I can get the pieces to do what I want. Time to clean up and "bullet proof" it.

Why my post?
help.gif


I could use some GPS GPX formatted output to test my plotting, in particular from the Eastern and Southern hemispheres. I'm sure I could Google Maps or MapQuest to create some routes and convert them to GPX format, else elevation information; real data would be some much more fun!
smile.png


Can't promise how soon I can get the app on the website as family and Holidays come first!

If you have a file(s) you're willing to contribute, either PM me and I will give you my email address to send it. t Most likely the GPX file will too large for PM.

Thanks in advance, and Best of the Holiday Season to all,

Roy

 
Last edited by a moderator:
I've quite a few GPX files recorded by my Tomtom, however they're all weston hemisphere and northern latitude.

They only contain lat-long information, not altitude, a sample I paste below:

<?xml version="1.0" ?>
<gpx version="1.0" creator="ExpertGPS 1.1 - https://www.topografix.com" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xmlns="https://www.topografix.com/GPX/1/0" xsi:schemaLocation="https://www.topografix.com/GPX/1/0 https://www.topografix.com/GPX/1/0/gpx.xsd">
<name>/mnt/sdcard/gpx/20131010_1518_44.tmp</name>
<trk>
<trkseg>
<trkpt lat="53.08072" lon="-1.54930"><name>TT-1</name></trkpt>
<trkpt lat="53.08186" lon="-1.55086"><name>TT-2</name></trkpt>
<trkpt lat="53.08259" lon="-1.55244"><name>TT-3</name></trkpt>
<trkpt lat="53.08321" lon="-1.55340"><name>TT-4</name></trkpt>
<trkpt lat="53.08354" lon="-1.55445"><name>TT-5</name></trkpt>
<trkpt lat="53.08327" lon="-1.55483"><name>TT-6</name></trkpt>
<trkpt lat="53.08297" lon="-1.55491"><name>TT-7</name></trkpt>
<trkpt lat="53.08235" lon="-1.55537"><name>TT-8</name></trkpt>
<trkpt lat="53.08189" lon="-1.55621"><name>TT-9</name></trkpt>
...
</trkseg>
</trk>
</gpx>

I use these to create maps of some of my trips using Google Maps, see here.

You are welcome to more of these if you wish, most, if not all, of the trips referenced I have as GPX files.
I've also written a PHP conversion from GPX to CSV to create the Google forms, and I've got a utility to convert from a Google route to a Tomtom itn format, this is web-based.

 
Top