Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
406 | joko | 1 | //________________________________________________________________________________________________________________________________________ |
2 | // |
||
3 | // Definition of gpx-header and footer elements for documents |
||
4 | // |
||
5 | //________________________________________________________________________________________________________________________________________ |
||
6 | |||
7 | |||
8 | const int8_t GPX_DOCUMENT_HEADER[] = |
||
9 | { |
||
10 | "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\" ?>\r\n" |
||
11 | "<gpx creator=\"NC\" version=\"1.0\" >\r\n" |
||
12 | "\r\n" |
||
13 | "<metadata>\r\n" |
||
14 | "<link href=\"http://www.mikrokopter.de\">\r\n" |
||
15 | "<text>MikroKopter</text>\r\n" |
||
16 | "</link>\r\n" |
||
17 | "</metadata>\r\n" |
||
18 | "\r\n" |
||
19 | }; |
||
20 | |||
21 | //________________________________________________________________________________________________________________________________________ |
||
22 | // |
||
23 | // footer of an gpx-file. |
||
24 | // |
||
25 | //________________________________________________________________________________________________________________________________________ |
||
26 | const int8_t GPX_DOCUMENT_FOOTER[] = |
||
27 | { |
||
28 | "</gpx>\r\n" |
||
29 | }; |
||
30 | |||
31 | //________________________________________________________________________________________________________________________________________ |
||
32 | // |
||
33 | // Header of a track |
||
34 | // |
||
35 | //________________________________________________________________________________________________________________________________________ |
||
36 | |||
37 | const int8_t GPX_TRACK_HEADER[] = |
||
38 | { |
||
39 | "<trk>\r\n" |
||
40 | "<name>Flight</name>\r\n" |
||
41 | }; |
||
42 | |||
43 | //________________________________________________________________________________________________________________________________________ |
||
44 | // |
||
45 | // Footer of a track |
||
46 | // |
||
47 | //________________________________________________________________________________________________________________________________________ |
||
48 | const int8_t GPX_TRACK_FOOTER[] = |
||
49 | { |
||
50 | "</trk>\r\n" |
||
51 | }; |
||
52 | |||
53 | //________________________________________________________________________________________________________________________________________ |
||
54 | // |
||
55 | // Header of a track segment |
||
56 | // |
||
57 | //________________________________________________________________________________________________________________________________________ |
||
58 | const int8_t GPX_TRACKSEGMENT_HEADER[] = |
||
59 | { |
||
60 | "<trkseg>\r\n" |
||
61 | }; |
||
62 | |||
63 | //________________________________________________________________________________________________________________________________________ |
||
64 | // |
||
65 | // Footer of a track segment |
||
66 | // |
||
67 | //________________________________________________________________________________________________________________________________________ |
||
68 | const int8_t GPX_TRACKSEGMENT_FOOTER[] = |
||
69 | { |
||
70 | "</trkseg>\r\n" |
||
71 | }; |
||
72 |