source: ntrip/trunk/BNC/src/t_prn.cpp@ 8148

Last change on this file since 8148 was 8148, checked in by stuerze, 7 years ago

INRSS support regarding RINEX observation files is added

File size: 2.5 KB
Line 
1#include <sstream>
2#include <iomanip>
3#include <stdlib.h>
4
5#include "t_prn.h"
6
7using namespace std;
8
9//
10//////////////////////////////////////////////////////////////////////////////
11int t_prn::toInt() const {
12 if (_system == 'G') {
13 return _number;
14 }
15 else if (_system == 'R') {
16 return MAXPRN_GPS + _number;
17 }
18 else if (_system == 'E') {
19 return MAXPRN_GPS + MAXPRN_GLONASS + _number;
20 }
21 else if (_system == 'J') {
22 return MAXPRN_GPS + MAXPRN_GLONASS + MAXPRN_GALILEO + _number;
23 }
24 else if (_system == 'S') {
25 return MAXPRN_GPS + MAXPRN_GLONASS + MAXPRN_GALILEO + MAXPRN_QZSS + _number;
26 }
27 else if (_system == 'C') {
28 return MAXPRN_GPS + MAXPRN_GLONASS + MAXPRN_GALILEO + MAXPRN_QZSS + MAXPRN_SBAS + _number;
29 }
30 return 0;
31}
32
33//
34//////////////////////////////////////////////////////////////////////////////
35string t_prn::toString() const {
36 stringstream ss;
37 ss << _system << setfill('0') << setw(2) << _number;
38 return ss.str();
39}
40
41//
42//////////////////////////////////////////////////////////////////////////////
43string t_prn::toInternalString() const {
44 stringstream ss;
45 ss << _system << setfill('0') << setw(2) << _number << '_' << _flags;
46 return ss.str();
47}
48
49// Set from string
50////////////////////////////////////////////////////////////////////////////
51void t_prn::set(const std::string& str) {
52 unsigned prn = 0;
53 char system = '\x0';
54 const char* number = 0;
55 if ( str[0] == 'G' || str[0] == 'R' || str[0] == 'E' ||
56 str[0] == 'J' || str[0] == 'S' || str[0] == 'C' ||
57 str[0] == 'I'
58 ) {
59 system = str[0];
60 number = str.c_str() + 1;
61 }
62 else if ( isdigit(str[0]) ) {
63 system = 'G';
64 number = str.c_str();
65 }
66 else {
67 throw "t_prn::set: wrong satellite ID: " + str;
68 }
69
70 char* tmpc = 0;
71 prn = strtol(number, &tmpc, 10);
72 if ( tmpc == number || *tmpc != '\x0' ) {
73 throw "t_prn::set: wrong satellite ID: " + str;
74 }
75
76 try {
77 this->set(system, prn);
78 }
79 catch (string exc) {
80 throw "t_prn::set: wrong satellite ID: " + str;
81 }
82}
83
84//
85//////////////////////////////////////////////////////////////////////////////
86t_prn::operator unsigned() const {
87 return toInt();
88}
89
90//
91//////////////////////////////////////////////////////////////////////////////
92istream& operator >> (istream& in, t_prn& prn) {
93 string str;
94 in >> str;
95 if (str.length() == 1 && !isdigit(str[0])) {
96 string str2;
97 in >> str2;
98 str += str2;
99 }
100 prn.set(str);
101 return in;
102}
Note: See TracBrowser for help on using the repository browser.