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
0
votes
0answers
10 views
How do I add elevation data to a GeoJSON line from a GPX file? [migrated]
I understand that elevation can be added as an optional third value in Coordinates (lat, long, elev) in a geojson file, but I can't find a way to actually do that from a gpx file. I've used ogr2ogr to ...
0
votes
0answers
9 views
CloudMate Routing Service
i’m currently trying to implement your routing service and have some problems with their result format.
My request is as follows:
...
0
votes
0answers
18 views
Location Based Services Files: Cannot get .GPX file's content using JavaScript
I'm trying to get a .GPX file's content using JavaScript but it is giving me weird HTML elements. I've done the same for an NMEA.txt file and it worked perfectly. These files contain location based ...
-2
votes
0answers
27 views
Pars GPX with Excel VBA Makro [closed]
Ich möchte eine Wegzeitberechnung mit Excel durchführen.
Dafür möchte ich einzelne Wegpunkte aus einer GPX Datei in ein Excel Arbeitsblatt reinladen.
Für die Berechnung brauche ich die Höhenmeter, ...
1
vote
1answer
121 views
Python: TypeError: 'file' object has no attribute '__getitem__'
I have a .gpx file which is cut off int the middle of the file. When I try to parse it using the gpxpy library I run into the following error.
Parsing points in track.gpx
ERROR:root:expected '>', ...
0
votes
1answer
34 views
How to reference an exception class in Python?
I want to catch a GPSException thrown by the gpxpy library.
try:
gpx = gpxpy.parse(open(filepath))
except GPXException:
print "GPXException for %s." % filepath
Since I am new to Python I do ...
0
votes
1answer
46 views
successively take values between two sub-strings and temporarily store it before writing them in a different order withhin a python fileread
I am reading the body of a .gpx file and need to change the format of the data so it can be read as a .kml
.kml has lat and long in a swapped order from .gpx, so i need to find a way to successively ...
0
votes
0answers
23 views
GPX Waypoint import to Filemaker Pro using XSL stylesheet
I am trying to import waypoints from a gpx file generated by a Garmin 62sc into a Filemaker 12 database. Using the xsl stylesheet from here:
GPX import to Filemaker Pro using XSL stylesheet
I can ...
0
votes
0answers
8 views
Which fileformats for POIs should be supported? [closed]
I would like to offer the locations of a company as download for navigation-systems (POIs). Currently I support the gpx-format (GPS eXchange Format).
I haven't found much on this topic on the ...
0
votes
0answers
27 views
How can I add a custom extension tag to the GPXFramework code?
I found the excellent resource of the open source iOS GPX Framework (http://gpxframework.com/) which allows me to create and read GPX files. However I would like to add a custom extension to store ...
0
votes
0answers
97 views
OpenLayers: parse GPX file, read 'ele' tags and calculate height gained
"The OpenLayers method is not especially well documented" someone said, which is why I can't fathom how to read the 'ele' data in a gpx file, sum it, and display the height gained.
I have a map with ...
0
votes
1answer
47 views
GeoDJango: retrieve last inserted primary key from LayerMapping
I am building an application with GeoDjango and I have the following problem:
I need to read track data from a GPX file and those data should be stored in a model MultiLineStringField field.
This ...
0
votes
2answers
100 views
Easy way to create GPX file with tracks
How do I easily create a GPX file that represents a track between two points, with waypoints?
0
votes
0answers
62 views
Simulating location Using GPX unable to choose file
Am having some problem regarding gpx file, it's xcode bugs? or there is an error on my self?
For first time use gpx from file, xcode work fine for me, but now it stops work in current project or a ...
0
votes
1answer
81 views
how to give path file to show the path in google maps?
I am creating a Android application to that stores location of device at fixed interval of time to a file. The locations make a path as the device goes from one location to other. But I want this path ...
0
votes
1answer
59 views
java android app gpx regular expression
Im writing an android app where I can see friends on the map I create, and when i login I will send a private message to all of my friends.I having a problem writing the regular expression for the ...
1
vote
1answer
84 views
Integration gmap3 JS plugin with gpxviewer/loadgpx module? How to get 'map' object from gmap3?
I am trying to integrate gmap3 JS plugin
http://gmap3.net/
with the gpxviewer module
https://github.com/peplin/gpxviewer
The gpxviewer documentation uses
var map = new ...
3
votes
1answer
105 views
XCode Default simulated location
I have set the Default Location in the Scheme setting for the app (see screenshot) and just send the app to Apple to get approved.
However, the same version I also send out to QA, Project Managers ...
0
votes
0answers
22 views
gpx parser for PHP [duplicate]
Possible Duplicate:
GPX parsing patterns and “standards”
Does anyone know of gpx parser for PHP ?
I am developing on server and need to upload gpx files from client(webpage and ios app), ...
0
votes
0answers
127 views
NMEA to GPX convertor - c\c++ Windows
It seems that almost all gps visualizers, use gpx file and not nmea info.
so I'm looking for a convertor that I can use in my cpp program ( open source) , that will convert NMEA file to a GPX file. ...
-1
votes
2answers
200 views
ADT 21 and library projects
Yesterday I updated adt to v 21. Today, after minor corrections I rebuild and start project, but it crashes. In my project i use few library progects. ActionbarSherlock is one of them. Logcat says ...
0
votes
0answers
250 views
Elevation graph from GPX file using Google Maps V3
I've want to show two or three elevation column charts (depending on how many routes are shown on the map) on the same page. The routes are polylines drawn from gpx files . I'm confused as to what's ...
0
votes
1answer
219 views
How to store/view GPS tracks from Android/iOS app on server
I am looking for a way to store GPS tracks without having to export them to GPX. The GPS tracks will only be used within an iOS/Android app.
App:
The app lets users record GPS tracks and sync these ...
0
votes
0answers
79 views
How to collect, simulate, and profile GPS data and how my app interacts with the data?
An app I'm working on is heavily dependent on GPS and I want to simulate poor GPS signal conditions. As I understand it I can give the iOS simulator a GPX file to use while debugging. Does anyone ...
0
votes
1answer
78 views
Simulate Low and Hight Gps Accuracy
I did a .gpx file to simulate a route on IOS simulator, now i wanna simulate the horizontal accuracy how I can do this?
as follow is an excerpt of my .gpx file:
<?xml version="1.0"?>
...
0
votes
1answer
398 views
Is it possible to animate multiple KML (gpx) routes in Google Earth
I would like to import multiple gpx files into Google Earth & animate them concurrently. I've only been able to animate one at a time.
0
votes
1answer
139 views
OpenLayers: two GeoJSON Layers, one transparent on both
I have a GPX Track (Startpoint == Endpoint) converted to GeoJSON.
I now want to display this track on a map where only by the trac enclosed map shown. The rest should be white.
So far I have the ...
0
votes
0answers
190 views
How to get different marker icon for different waypoints?
Not sure how to explain problem but let's try....
I made an example of the gpx file generated with Garmin's BaseCamp software that contains few different waypoints with different markers defined ...
0
votes
1answer
109 views
WP7 XML insert into GPX
In my Isolated storage I have a file called Route.gpx which is getting created with this code:
using (IsolatedStorageFileStream myStream = new IsolatedStorageFileStream("Route.gpx", ...
0
votes
2answers
177 views
ios - Geolocation and Tracking in a gpx file
I want to implement an application for IOS.
This application should track a route in a gpx file.
Can you tell me some links or open source project?
thank you very much
1
vote
0answers
68 views
Moving to xcode 4.4 wipes out GPX files in Schemes
Not only did I lose the references to a particular gpx files in my schemes... I can't add back the files.
When editing the scheme (by adding a gpx file). finder doesn't highlight any gpx files as ...
5
votes
1answer
413 views
Create GPX file from GeoPoints
Is there any way to export GeoPoints into a GPX file?
@Override
public void onLocationChanged(android.location.Location location) {
lat = location.getLatitude();
lon = ...
0
votes
1answer
98 views
Android DDMS Loaded GPX file Pausing Itself
I am loading a GPX file into my emulator.
THE PROBLEM
The file has 7226 points (it says so in the Point Count column) so the file is being loaded in correctly. However, the problem happens when I ...
1
vote
0answers
208 views
How should GPS / GPX data be stored in a MySQL database?
I could presumably have several different GPS data formats (GPS, TCX, FIT, etc.) that would be uploaded from Garmin products or other route-based GPS products.
Manipulating the data shouldn't be ...
0
votes
0answers
310 views
gpx file Extension node gpxtpx:TrackPointExtension
I'm trying to read a GPX file created within a Garmin GPS device. I have the following code to try to pull out all the data, but it hangs up in the node and it's children, ie. =>
Here's the code
...
0
votes
1answer
169 views
Microsoft Mappoint set pushpin name for .gpx export
I am trying to export a large set of pushpins together with their lat/lon data out of microsoft MapPoint. The normal export to excel doesn't include lat/lon info so I tried to circumvent this problem ...
1
vote
1answer
145 views
XSLT swap element values
I am trying to swap the values for elements name and cmt in a GPX file (XML) using an xslt.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<gpx ...
1
vote
1answer
533 views
How to convert text files to GPX file?
I have a text files with latitudes and longitudes for different points separated by commas as follows. I want to convert it into GPX file so that I can use this to send coordinates from this file to ...
3
votes
2answers
1k views
How to extract .gpx data with python
I am a new linux/python user and have .gpx files (output files that are made from GPS tracking software) and need to extract values into csv/txt for use in a GIS program. I have looked up strings and ...
1
vote
0answers
233 views
Android: need help parsing data from .GPX file
I followed a tutorial to learn to parse the data from the gpx file (which is in my raw folder), and for some reason no data is getting parsed into the NodeList. Here is my XMLParser class
package ...
1
vote
1answer
197 views
Can anyone recommend a good, open-source GPS program? [closed]
I'm looking for a desktop application that I can feed it .gpx file, and give me a map with the route described in the .gpx file highlighted.
I'd probably would like to change it a bit to fit my ...
0
votes
0answers
69 views
How to convert a GPX file to a protocol buffer file format?
i need to convert a GPX file to a pbf file using Google's protobuf. Can anybody help me in writing the .proto file to do that?
Good news... i have got some information from google code
hope it will ...
0
votes
3answers
561 views
Saving lat longs from database to GPX file.Android
I have created sqlite database which stores Latitude,Longitude and some other information like description.
Now i want to extract this information and write into a GPX file to my SD card for further ...
0
votes
1answer
67 views
What is the correct way to request this element from the DOM?
I am retrieving all the coords from a gpx file, and here is a sample line from that file
<gpxx:rpt lon="11.0739613" lat="47.5691700"/>
In IE and FireFox, the following code executes ...
0
votes
1answer
997 views
What is the difference between track and route in a GPX file
I wanted to know what is the basic difference between a GPX track and route file
1
vote
3answers
694 views
How do I use XmlSerializer to handle different namespace versions?
I am using the .NET XmlSerializer class to deserialize GPX files.
There are two versions of the GPX standard:
<gpx xmlns="http://www.topografix.com/GPX/1/0"> ... </gpx>
<gpx ...
0
votes
1answer
109 views
How to persist GPX (XML) document to a file using Tango?
My setting:
Compiler: DMD 1.056
Library: Tango 0.99.9
OS: Windows 7
What I have done so far:
I have managed to build via API a GPX file and know how to format it and display it on the console.
...
3
votes
3answers
4k views
When using GPX in Xcode to simulate location changes, is there a way to control the speed?
I'm using the following GPX file in Xcode 4.2 to simulate a location change. It works well, but I can't control the speed of the location change. stamp seems to be not working. Does anyone have a ...
1
vote
1answer
894 views
Parsing GPX files with SAX parser or XmlPullParser
I have a number of gpx files that my app creates and will need to parse at a later stage in the app.
I'm having trouble parsing them in general. I've seen alot of examples of parsers on this site and ...
2
votes
4answers
573 views
How to append a child element to a large XML file using Java?
I am trying to create a XML file, using Java, that is a collection of GPS coordinates (GPX). Every time I receive a coordinate from my android device (approximately 1 every second) I need to append ...
