80 strm << asString<short>(
PRN) << endl;
83 strm << asString<short>(
SVNnum) << endl;
86 strm << asString<short>(
URAnum) << endl;
100 strm << asString<short>(
SV_health) << endl;
103 strm << asString<short>(
satConfig) << endl;
136 string whitespace =
" \t\r\n";
140 string::size_type front = line.find_first_not_of(whitespace);
141 string::size_type end = line.find_first_of(whitespace,front);
142 string::size_type length = end - front;
143 ecc = line.substr(front,length);
145 front = line.find_first_not_of(whitespace,end);
146 end = line.find_first_of(whitespace,front);
147 length = end - front;
148 i_offset = line.substr(front,length);
152 front = line.find_first_not_of(whitespace,end);
153 length = line.length() - front;
154 OMEGAdot = line.substr(front,length);
163 front = line.find_first_not_of(whitespace);
164 end = line.find_first_of(whitespace,front);
165 length = end - front;
166 Ahalf = line.substr(front,length);
168 front = line.find_first_not_of(whitespace,end);
169 end = line.find_first_of(whitespace,front);
170 length = end - front;
171 OMEGA0 = line.substr(front,length);
173 front = line.find_first_not_of(whitespace,end);
174 length = line.length() - front;
176 w = line.substr(front,length);
182 front = line.find_first_not_of(whitespace);
183 end = line.find_first_of(whitespace,front);
184 length = end - front;
185 M0 = line.substr(front,length);
188 front = line.find_first_not_of(whitespace,end);
189 end = line.find_first_of(whitespace,front);
190 length = end - front;
191 AF0 = line.substr(front,length);
193 front = line.find_first_not_of(whitespace,end);
194 length = line.length() - front;
195 AF1 = line.substr(front,length);
214 s <<
"PRN = " <<
PRN << std::endl;
215 s <<
"SVNnum = " <<
SVNnum << std::endl;
216 s <<
"URAnum = " <<
URAnum << std::endl;
217 s <<
"ecc = " <<
ecc << std::endl;
218 s <<
"i_offset = " <<
i_offset << std::endl;
219 s <<
"OMEGAdot = " <<
OMEGAdot << std::endl;
220 s <<
"Ahalf = " <<
Ahalf << std::endl;
221 s <<
"OMEGA0 = " <<
OMEGA0 << std::endl;
222 s <<
"w = " <<
w << std::endl;
223 s <<
"M0 = " <<
M0 << std::endl;
224 s <<
"AF0 = " <<
AF0 << std::endl;
225 s <<
"AF1 = " <<
AF1 << std::endl;
226 s <<
"SV_health = " <<
SV_health << std::endl;
227 s <<
"satConfig = " <<
satConfig << std::endl;
228 s <<
"xmit_time = " <<
xmit_time << std::endl;
229 s <<
"week = " <<
week << std::endl;
230 s <<
"toa = " <<
Toa << std::endl;
236 AlmOrbit ao(PRN, ecc,i_offset, OMEGAdot, Ahalf, OMEGA0,
237 w, M0, AF0, AF1, Toa, xmit_time, week, SV_health);