FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Arduino-GPX-Library/GPX/GPX.cpp at master · suttonr/Arduino-GPX-Library · GitHub
suttonr
/
Arduino-GPX-Library
Public
Notifications
You must be signed in to change notification settings
Fork
8
Star
14
Code
Issues
0
Pull requests
1
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
Arduino-GPX-Library
/
GPX
/
GPX.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
152 lines (135 loc) · 4 KB
Breadcrumbs
Arduino-GPX-Library
/
GPX
/
GPX.cpp
Copy path
File metadata and controls
152 lines (135 loc) · 4 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
* GPX Library -- GPX.cpp
* Created by: Ryan M Sutton
*
* Copyright (c) 2010, Ryan M Sutton
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the Ryan M Sutton nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL Ryan M Sutton BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#
include
<
GPX.h
>
GPX
::
GPX
(){
}
//
Get methods
String
GPX::getOpen
(){
return
String
(_GPX_HEAD);
}
String
GPX::getClose
(){
return
String
(_GPX_TAIL);
}
String
GPX::getMetaData
(){
String
localStr
(_GPX_META_HEAD);
if
(_metaName.
length
() >
0
){
localStr = localStr +
String
(_GPX_NAME_HEAD);
localStr = localStr +
wrapCDATA
(_metaName);
localStr = localStr +
String
(_GPX_NAME_TAIL);
}
if
(_metaDesc.
length
() >
0
){
localStr = localStr +
String
(_GPX_DESC_HEAD);
localStr = localStr +
wrapCDATA
(_metaDesc);
localStr = localStr +
String
(_GPX_DESC_TAIL);
}
localStr = localStr +
String
(_GPX_META_TAIL);
return
localStr;
}
String
GPX::getTrakOpen
(){
return
String
(_GPX_TRAK_HEAD);
}
String
GPX::getTrakClose
(){
return
String
(_GPX_TRAK_TAIL);
}
String
GPX::getTrakSegOpen
(){
return
String
(_GPX_TRKSEG_HEAD);
}
String
GPX::getTrakSegClose
(){
return
String
(_GPX_TRKSEG_TAIL);
}
String
GPX::getInfo
(){
String
localStr
(
"
"
);
if
(_name.
length
() >
0
){
localStr += _GPX_NAME_HEAD;
localStr +=
wrapCDATA
(_name);
localStr += _GPX_NAME_TAIL;
}
if
(_desc.
length
() >
0
){
localStr += _GPX_DESC_HEAD;
localStr +=
wrapCDATA
(_desc);
localStr += _GPX_DESC_TAIL;
}
return
localStr;
}
String
GPX::getPt
(String typ, String lon, String lat){
String
localStr
(_GPX_PT_HEAD);
localStr = localStr.
replace
(
"
TYPE
"
,typ);
localStr += lat +
"
\"
lon=
\"
"
;
localStr += lon +
"
\"
>
"
;
if
(_ele.
length
() >
0
){
localStr += _GPX_ELE_HEAD;
localStr += _ele;
localStr += _GPX_ELE_TAIL;
}
if
(_sym.
length
() >
0
){
localStr += _GPX_SYM_HEAD;
localStr += _sym;
localStr += _GPX_SYM_TAIL;
}
if
(_src.
length
() >
0
){
localStr += _GPX_SRC_HEAD;
localStr +=
wrapCDATA
(_src);
localStr += _GPX_SRC_TAIL;
}
localStr +=
String
(_GPX_PT_TAIL).
replace
(
"
TYPE
"
,typ);
return
localStr;
}
String
GPX::getPt
(String typ, String lon, String lat, String ele){
}
//
Set Methods
void
GPX::setMetaName
(String name){
_metaName = name;
}
void
GPX::setMetaDesc
(String desc){
_metaDesc = desc;
}
void
GPX::setName
(String name){
_name = name;
}
void
GPX::setDesc
(String desc){
_desc = desc;
}
void
GPX::setEle
(String ele){
_ele = ele;
}
void
GPX::setSym
(String sym){
_sym = sym;
}
void
GPX::setSrc
(String src){
_src = src;
}
//
Private Functions
String
GPX::wrapCDATA
(String input){
String
localStr
(
"
<![CDATA[
"
);
localStr += input;
localStr +=
"
]]>
"
;
return
localStr;
}
Back
|
FazBrowse Home
|
New Git URL