Revision 277, 0.7 KB
(checked in by daniel, 21 months ago)
|
Output format geometry renewal
|
Line | |
---|
1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
2 | <gpx |
---|
3 | xmlns="http://www.topografix.com/GPX/1/1" |
---|
4 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
5 | xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd" |
---|
6 | creator="wrs.postlbs.org" version="1.1"> |
---|
7 | |
---|
8 | <metadata> |
---|
9 | <name>Route</name> |
---|
10 | <desc>Route description</desc> |
---|
11 | <author> |
---|
12 | <name>wrs.postlbs.org</name> |
---|
13 | <email></email> |
---|
14 | </author> |
---|
15 | <link href="http://wrs.postlbs.org/1.1.0"> |
---|
16 | <text>wrs.postlbs.org</text> |
---|
17 | </link> |
---|
18 | <time></time> |
---|
19 | </metadata> |
---|
20 | |
---|
21 | <trk> |
---|
22 | <name>Track name</name> |
---|
23 | $edges:{ e | |
---|
24 | <trkseg> |
---|
25 | $e.points:{ p | |
---|
26 | <trkpt lat="$p.y$" lon="$p.x$"/> |
---|
27 | }$ |
---|
28 | <extensions></extensions> |
---|
29 | </trkseg> |
---|
30 | }$ |
---|
31 | </trk> |
---|
32 | </gpx> |
---|