Tagged Questions
GPX (the GPS Exchange Format) is a light-weight XML data format for the interchange of GPS data. Source: http://www.topografix.com/gpx.asp
10
votes
3answers
3k views
How to calculate distance from a GPX file?
I have a GPX file with a GPS track. Now I want to calculate the distance I covered with this track.
What's the best way to calculate this?
7
votes
1answer
280 views
Open Source/existing C# class to write GPX files? (C#)
I am looking for a C# library or class to help write GPX files from a collection of waypoints I have (lat/long, etc).
I have found quite a few readers - but not so much for writing.
Bonus points if ...
5
votes
6answers
694 views
Plotting GPS info with Ruby
I'm looking for ways to programmatically convert my GPS logs to images and would like to do this in Ruby... if that's an acceptable tool. I have no GIS background whatsoever but as a programmer i ...
5
votes
2answers
3k views
XmlSerialization and xsi:SchemaLocation (xsd.exe)
I used xsd.exe to generate a C# class for reading/writing GPX files. How do I get the resultant XML file to include the xsi:schemaLocation attribute
eg.
I want the following but xsi:schemaLocation is ...
4
votes
1answer
213 views
Specifying accuracy in GPX or KML
I am developing an Android application and would like to play a recorded track in DDMS tool. Besides latitude and longitude, my recorded data has horizontal accuracy which I'd like to pass to Android ...
3
votes
1answer
140 views
How to paste a custom format clipboard data into a TMemo?
This question refers to this one along with its accepted answer posted here on stackoverflow.
I don't feel comfortable at Windows API programming.
Exploring the way EasyGPS by Topografix handles ...
3
votes
1answer
122 views
How can i load multiple gpx files into PostGIS?
I have a bunch of gpx files that come from GPSLogger for Android app.
Files look like:
<?xml version="1.0" encoding="UTF-8"?>
<gpx version="1.0" creator="GPSLogger - ...
3
votes
2answers
211 views
Counting number of laps from GPS coordinate recordings
I have a GPX file with large set of points (longitude and latitude sorted by time), how can I calculate how many laps my set contains?
The GPS is recorded during circuit racing session.
The lap is ...
2
votes
1answer
58 views
Where does this precision loss happen and how to prevent it?
I'm writing a simple tool in Qt which reads data from two GPX (XML) files and combines them in a certain way. I tested my tool with track logs that contain waypoints having 6 decimal digits precision. ...
2
votes
5answers
241 views
Delphi free XML parser / Reader for GPX files
I am looking for a free easy to use XML parser / Reader for GPX files in Delphi and was wondering if anyone could recommend one or should i be using Delphi's own XML data binding / XML document?
...
2
votes
2answers
222 views
Storing GPX-Files in Database mysql vs. postgis (postgresql)
i'm working on a web-platform which analyzes GPX-Tracks and draws some profiles, speed stuff, etc. Currently i just calculate the statistics once (like distance, avg speed, duration, height ...
2
votes
3answers
411 views
Help to create gpx file with Delphi 7
I'm Delphi newbie trying to create a GPX file like this,
<?xml version="1.0" encoding="UTF-8" ?>
- <gpx xmlns="http://www..." version="1.1" creator="EasyGPS 4.18" ...
2
votes
2answers
529 views
GPX to KML in PHP
I am working in a project where people upload GPX and I am trying to convert a GPX file into a KML file, so they have the option of downloading in both formats.
I found a XSLT file that supposedly ...
2
votes
8answers
842 views
Simplification / optimization of GPS track
I've got a GPS track, produces by gpxlogger(1) (supplied as a client for gpsd). GPS receiver updates its coordinates every 1 second, gpxlogger's logic is very simple, it writes down location (lat, ...
2
votes
3answers
2k views
GPX Parser for Java?
are there some Java API for parsing GPX files? I need to parse many GPX files into our own data structure (our own database).
Thx 4 help
Buju
2
votes
1answer
235 views
What ellipsoid or geoid for GPX file elevations-and how do you know?
I have been poking around and have been unable to find a standard for what ellipsoid or geoid corresponds to "0" elevation in GPX files. Is there a standard? Do I just assume the WGS84 ellipsoid? Or ...
2
votes
1answer
644 views
Multiple XML Namespaces in tag with LXML
I am trying to use Pythons LXML library to great a GPX file that can be read by Garmin's Mapsource Product. The header on their GPX files looks like this
<?xml version="1.0" encoding="UTF-8" ...
1
vote
1answer
86 views
Creating GPX file from array of CLLocation
My application needs to share array of CLLocations (Route) within devices using application.I have no experience of using GPX before this. Is GPX is best format to do it? How can I create GPX file ...
1
vote
2answers
64 views
Gpx parser or GPX documentation
I'm developing an iOS 5 application.
I want to develop a GPX parser but I'm wondering if there is one developed before I start to developing it.
Do you know if there is an Objective-c GPX parser?
1
vote
0answers
64 views
How to insert xml prolog using SimpleStorage to generate gpx file?
I plan to adopt once and for all handy a tool for handling the creation of gpx files.
I believe SimpleStorage which is a OmniXML based storage suited for easy XML data management, data storage and ...
1
vote
2answers
59 views
GPX parsing patterns and “standards”
I would like to continue the discussion from this post: GPX Schema validation problems. To go directly to the point, I want to ask how people are parsing and working with GPX files in their software ...
1
vote
1answer
154 views
Python module that can convert .gpx to .kml
I am looking for a python module that would allow me to convert GPS .gpx files (from various devices) into .kml. Similary to what LoadMyTrack does.
1
vote
1answer
77 views
How to calculate “corners” in a GPX track?
I want to be able to take a GPX track of a twisty road and have an algorithm count the number of corners. I guess it will have to be done comparing the "bearings" of subsequent tracks.
However I'm new ...
1
vote
0answers
61 views
How can gpx track add to quadtree?
Hi
I have a problem work whit very big gpx tracks for Android. I would like to add small parts of track to quadtree, and only this small parts draw to the display. My real problem is how implement a ...
1
vote
3answers
164 views
Any idea how these lat/lon pairs are formatted?
I got this snippet which is part of GPX data, can't figure what format the lat/lon pairs are though...
...
1
vote
1answer
1k views
Extract some Elements with LinqToXML from GPX-File for Geocaching
i'm trying to get some Elements from a gpx-file (is a xml file). This is not the standard gpx-scheme. There are some changes from geocaching.com which is a website for geocaching.
My sample XML-File ...
1
vote
1answer
60 views
How to associate waypoints with their geocache when loaded from a GPX file
I am writing an application that reads in pocket queries from Geocaching.com and displays them on a map. I already have it parsing the gpx and wpts.gpx files. I want to be able to list the associated ...
1
vote
1answer
488 views
Ruby GPX file parser
Advise what can parse GPX file in Ruby?
I tried:
http://github.com/dougfales/gpx - it does not work with Ruby Enterprise Edition (http://github.com/dougfales/gpx/issues # issue / 1)
I would not ...
1
vote
2answers
2k views
How to parse GPX files with SAXReader?
I'm trying to parse a GPX file. I tried it with JDOM, but it does not work very well.
SAXBuilder builder = new SAXBuilder();
Document document = builder.build(filename);
Element root = ...
0
votes
1answer
34 views
show a map for a gpx file
I want to allow users to upload gpx files of a tracked route to my rails 3.2 app and to show them on a map, i.e. by using Google Maps.
How can I do that? Is there an easier way than parsing the gpx ...
0
votes
2answers
38 views
Validate XML(gpx) schema with SAXParser offline
I am using the following code to validate an XML document (.gpx) against a specified XML schema. I am storing the schema locally as a .xsd file. The problem is that, this method uses internet ...
0
votes
1answer
36 views
Can OpenLayers parse GPX data which is stored as a string in a javascript variable?
I have a map site using OpenLayers, which imports and displays GPX data using the following code:
var lgpx = new OpenLayers.Layer.GML(gpxtracktitle, gpxfileaddress, {
format: ...
0
votes
4answers
73 views
GPX Schema validation problems
I am building an application that works primarily with GPX files as the input data. Given the fact that gpx files are supposed to be defined by the gpx schema (as defined here: ...
0
votes
1answer
29 views
GPX file: The matching wildcard is strict, but no declaration can be found for element
I am working with GPX files and I am parsing them with Java. I am using javax.xml.validation.Validator to make sure they conform to the GPX schema. The thing is, one of my files ends with:
...
0
votes
1answer
62 views
How to convert on the client side GPX and KML to JSON format?
How to convert GPX and KML to JSON, is known any client-side solution? Can be detected file format by selecting by one button? I work with MongoDB and I found solution in ruby but i don't want this ...
0
votes
1answer
83 views
How do I upload a .gpx file from localhost to google maps (v3) ?
I'm new to the Google Maps API and I'm working on localhost.
I want to add the ability for a user to upload their .gpx file and visualize it on the Google Map.
I've found this AJAX function wich ...
0
votes
1answer
127 views
GPX import to Filemaker Pro using XSL stylesheet
I know about GPSbabel and have used it for transforming GPX files into CSV that I can then import into Filemaker Pro for manipulation. However, I'd like to be able to import GPX files more simply ...
0
votes
1answer
26 views
Gpx file format, what use of segment?
Gpx file is an XML document used to track spatio-temporal information. It look like:
<gpx>
<trk>
<segment>
<trkpt lat="...", lon="..."></trkpt>
...
0
votes
2answers
57 views
How to comment a GPX file?
How I can make a comment in a GPX files?
I checked on Google and here with no luck. Thank you !
0
votes
0answers
101 views
What's the requirment on GPX file format from DDMS?
I'm now working on android platform and developing app using location information. However, I cannot get DDMS to recognize my gpx file. I know that many people have similar problems, and someone ...
0
votes
1answer
251 views
GPS GPRS, how to receive and process live data
I have a GPS with a GPRS with an active SIM card. How do I go about directing the GPRS data to a specific website (IP port_ I believe port 3500 is used). I do not know how to acquire the GPS/GPRS data ...
0
votes
1answer
96 views
generate map path from csv addresses or kml/gpx points?
I have a list of 200 some addresses. I used geocommons to convert these addresses into long/lat coordinates in kml and gpx format. I need to generate a map by connecting all the points to create a ...
0
votes
0answers
181 views
Help with parsing xml with Nokogiri (gpx file)
I'm working on parsing and gpx file in Rails 3 with Nokogiri. I'm having problems parsing elements below the search element.
Here is an example of the xml file:
<wpt lat="13.6456857" ...
0
votes
1answer
72 views
Need to convert rtept to trkpt, any XSL available before I write one?
I don't mind writing an XSL but if one has already been written I should reuse it.
rtept = route point in the GPX format
trkpt = track point in the GPX format
Converting latitude and longitude ...
0
votes
1answer
235 views
Android gpx overlay
I took the gpx file from myTrack program. It has the list of coordinates in the file. how do I overlay that file into a MapView.
0
votes
0answers
139 views
Best solution for gpx data into a google map in Django
What is the best solution that anyone has come across to implement map data, ie. gpx files, into a Django app and then displayed into a google map. Ideally I am looking for solutions that can import ...
0
votes
1answer
125 views
0
votes
0answers
404 views
Attempting to load GPX and KML format files from Mail and Safari using CFBundleDocumentTypes on IPhone
I've setup other binary document types (such as zip archives) and they load from Safari and Mail just fine. But the XML based formats only run the "Quick View" and show the raw XML code. Is there ...
0
votes
1answer
280 views
php simple_xml xpath issue for gpx file
I try to get the lat and lon's from a gpx file (GPS XML).
When I do (snippet): $res = $xml->xpath('//*');
I get the full content returned.
When I try to narrow down like this: $res = ...
0
votes
2answers
351 views
XPath query for GPX files with namespaces?
I am able to access the<trkpt></trkpt>nodes by the xpath expression<xsl:for-each select='gpx/trk/trkseg/trkpt'> when the GPX file has the following simple structure:
<gpx>
...