Thanks. So for fairly simple use, probably better to stick with 1.0....
2229
comparotf
May 16, 2012 9:49 pm
Hi I am new in your group and need probably only two really little information. INFORMATION no. 1 required: I will describe a complex travelling course on bike...
2230
Joshua Judson Rosen
Rozzin@...
May 19, 2012 10:31 pm
... We use GPX 1.1 + Garmin's TrackPointExtensionv2 schema in FoxtrotGPS, which gets us support for speed, course, and a number of other useful parameters too:...
2231
phil_hornby
May 20, 2012 3:49 pm
... ... ... <xsd:sequence><!-- elements must appear in this order --><!-- Position info --><xsd:element name="ele" type="xsd:decimal" ...
2232
procarrie
Jun 6, 2012 1:16 pm
Hi all. I have a problem about GPX schema. I want to use "link" tag and "extensions" tag. But when I tried to create GPX file including link tag on Altova...
2233
Scorpio
salcedo
Jun 7, 2012 1:55 pm
Looks like your tool is referencing v1.0 of the schema instead of v1.1. You can take a look at both versions of the schema online ...
2234
d_mcgahey
Jun 8, 2012 2:50 pm
Hi Kevin- Take a look at the Altova blog post on GPX from last March at: http://blog.altova.com/2012/03/global-positioning-of-xml.html The first two screen...
2235
nomad9@...
nomad9...
Jun 27, 2012 3:15 pm
Hi, I am completely new to this format and I'm trying to establish if there is a limit or advisable size (number of characters)for the name, cmt and desc...
2236
Robert Lipe
robertlipe
Jun 27, 2012 3:40 pm
On Fri, Jun 15, 2012 at 5:14 AM, nomad9@... < ... There is not a prescribed limit in the spec as different devices have different limitations. For...
2237
Leslie Elieff
lesliee...
Aug 5, 2012 2:57 pm
Hello, I am a newbie web developer of 5 months. I'm still in school and trying to figure out a final project. I wanted to make a website that people could go...
2238
Joshua Judson Rosen
Rozzin@...
Aug 5, 2012 10:46 pm
... OK, so you want to make a web UI that basically hooks into a database (e.g.: a table storing name, type, lat, lon), does a simple query, and either lists...
2239
simbateman
Aug 10, 2012 7:36 pm
Well there are a couple tricks to making that work. Are people really going to type in their gps coords or are they more likely to put in an address. If you...
2240
WARREN PORTER
wbporter455...
Aug 10, 2012 7:36 pm
This might give you some ideas if you are required to read a gpx file for your data. My webpage reads a formatted gpx file (pasted from the clipboard) into a...
2241
Leslie Elieff
lesliee...
Aug 10, 2012 7:37 pm
Hi Joshua, Thank you for your response, but my teacher negated this idea. L ... [Non-text portions of this message have been removed]...
2242
lesliee@...
lesliee...
Aug 13, 2012 3:52 pm
Dear Group, Thank you for all who replied, I didn't think I would get responses. lol I am onto another project now, the latter discarded. This project is much...
2243
routeplannerwp
Oct 5, 2012 10:31 pm
Hi, While not a total newbie to GPX, I am having trouble understanding custom extensions. I'm a mobile software developer and would like to write a GPX file...
2244
Francois Comparot
comparotf
Oct 8, 2012 8:06 am
Hi, In this context it would be very helpfull to get the possibility to break the gpx route (like the turtle function "hidden" does) at one or more points and...
2245
routeplannerwp
Oct 12, 2012 12:00 pm
For example, I thought one could add tags like this: <extension> <MyTag> <mydata>this is the extra specific data</mydata> </MyTag> </extension> But this throws...
2246
Joshua Judson Rosen
Rozzin@...
Oct 12, 2012 1:41 pm
... If you want your XML to validate, then I think you need to define and use a namespace for the extension elements; there is a half-useful example of this in...
2247
mel_earp
Oct 13, 2012 3:41 pm
I have done this successfully: <extensions> <mynamespace:mytag1>stuff</mynamespace:mytag1> <mynamespace:mytag2>more stuff</mynamespace:mytag2> </extensions>...
2248
routeplannerwp
Oct 15, 2012 6:34 pm
Thank you for the suggestions. It appears I need to study how to make an .XSD?! I tried simply adding a namespace. Here is the beginning of my test GPX file. ...
2249
Lynn W. Deffenbaugh (...
ldeffenb
Oct 15, 2012 7:08 pm
I'm not an expert here, but someone had posted a note to make sure you noticed that it was <extensions> PLURAL. Lynn (D) - KJ4ERJ...
2250
Joshua Judson Rosen
Rozzin@...
Oct 17, 2012 12:12 am
... Well, not necessarily a `.xsd', but you need *some* sort of schema defined for whatever parts of the data you want to be able to validate. By definition,...
2251
Matt Hoover
the.one.eleven@...
Jan 13, 2013 6:13 pm
I was just going through the GPX 1.1 spec for the first time. It says this for rtept: <xsd:element name="rtept" type="wptType" minOccurs="0" ...
2252
Robert Lipe
robertlipe
Jan 13, 2013 6:16 pm
Yes, that's probably effectively a typo. The "obvious" definition applies. A route is an array of routepoints, just like a track is an array of trackpoints....
2253
Jean-Claude Repetto
jrepetto2001
Jan 14, 2013 9:50 pm
Hello, I want to validate some GPX files. I have read the procedure on http://www.topografix.com/gpx_validation.asp . I have not found SaxCount on my system ,...
2254
Robert Lipe
robertlipe
Jan 14, 2013 11:35 pm
... SAXCount uses -n -s -f to turn namespace, schema, and full validation ON. SAX2Count uses those same flags to turn it OFF. It's a bit of a needless ...
2255
phopfgartner
Feb 12, 2013 12:23 pm
I need to export all feature attributes in a GPX file. Is there a canonical way to do this and is there an accepted XSD Schema to use from within the...
2256
Joshua Judson Rosen
Rozzin@...
Feb 14, 2013 6:36 pm
... All feature attributes of *what*? It's hard to recommend a schema for encoding some set of attributes without having any idea what those attributes...
2257
phopfgartner
Feb 19, 2013 4:49 pm
... This is the exactly the point of the ExtendedData element in KML. As an example: <ExtendedData> <Data name="GEMEINDE"> <value>MERAN</value> </Data> <Data...