I'm creating a GPX document in .NET, and I am having trouble coding the document (root) element. The document element contains an XSI namespace declaration...
Hello, I wrote an utility to download tracks from a GPS based on the MTK chip (i-Blue 747 data logger). In the data log there are fields that do not accomodate...
... At a glance, very little of this is actually MTK-specific at all; it's closer to "raw" NMEA capture, right? There have been discussions on this list (long...
Hello, ... Yes, please don't call your schema "MTK" - try to create something as generic and reusable as possible. Put the satellite positioning stuff in a...
I am using .NET Frameworks xsd.exe to generate classes for both the 1.1 and 1.0 version of the gpx.xsd. I am not sure how to quickly tell which class I should...
Hi, I'm just starting reading GPX data with PHP. I've played with XML before but I'm not a PHP expert by a long shot. I've been able to dump Garmin Training...
... Those are attributes. How you read them depends on which library you're using, but look for the word 'attribute'. XML or XMLReader ? Or are you reading...
... If you are, you're headed down a bad path. If you don't know what XML attributes are, you don't want to be parsing XML. Use an XML parsing library;...
passing funny brackets? sounds very painful indeed I've put the source I'm using in the files section "garmin_tcx_simple_parser.php" Its adapted from a...
I'm not a PHP programmer either, but I did find that PHP 5 has an extension named SimpleXML. And as the name implies, it certainly looks like it simplifies...
Thanks for your input! I found some code to deal with things like <animals pets="dogs">5</animals> <animals pets="cats">3</animals> and it relied on SimpleXML...
I'm a hobby Java GIS Programmer. I've been thinking about writing some simple tools to work with GPS Waypoints. It looks like GPX is the logical format to use,...
... GPX is just another kind of XML. If you have an XML library already, it's hardly worth writing another library on top of that to handle GPX. Libraries...
... Hi Landon. One option would be to look at GPSBabel: http://www.gpsbabel.org/ (can be used from the command line, source is GPL) -- Dave Patton System...
Looks like Flash is the easier way to go. I'll tweak this example later ///////////////////////////////////////// var doc:XML = new XML("<mytag name='Val'>...
Added the following files to the files section flash_GPX_parser.txt flash_GPX_sample.gpx (co-ordinates have been changed to protect the innocent) copy and...
... Now outputs trackpoint data suitable for pasting into a Garmin Traning Center course file - suitable for uploading to your Forerunner 305 or similar. You...
As has been previously mentioned, XML parsing is fairly difficult, but PHP has reasonable library support for it. Check out the docs at http://us.php.net/xml ...
Take a look at sourceforge.net/projects/appformap/ In the source tree you can find a lib, which can parse gpx and output a sql for inserting the data in a...
Steve, Martin, thanks for your input, definately what I'm looking for! I'll be sure to have a go at php again once I get the time. ... I partially agree. The...
I've been playing around some more with reading GPX in PHP, and found that PHP has a very nice "SimpleXML" support. Here's some even simpler code for printing...
Hi, is there a tiny open source lib for GPX for languages Java and Javascript available which can import&export XML and Json? Why is there no speed and course...
Anybody know of a GPX editor? I'm taking pics at my in-laws, and want to tag the photos with the geo info. Problem is, I haven't had the gps receiver running...
Hi, is there any free and tiny library to parse and dump GPX 1.1 from/to Java and Javascript with XML and Json and NMEA format? Why is there no markup for...
While it's not an editor, you might want to look at Robogeo. Since you seem to know the locations that the pictures where taken, it will allow you geocode the...
Oppa. I meant $40 bucks ($39.95). Robert McMahan ... From: gpsxml@yahoogroups.com [mailto:gpsxml@yahoogroups.com] On Behalf Of Mike Peck Sent: Friday,...
Ok, so maybe I didn't/don't understand the format as well as I thought. I re-added all the coords as track points in a track, and then GPicSync did it's...
... GPX /is/ XML. XML is a format for data: it allows you to specify field names and values. That's what GPX does. You don't need an importer or exporter to...