Changeset 6481 in ntrip
- Timestamp:
- Dec 28, 2014, 4:33:58 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/satObs.cpp
r6477 r6481 117 117 void t_satCodeBias::readEpoch(const QStringList& lines, QList<t_satCodeBias>& biasList) { 118 118 } 119 120 // 121 //////////////////////////////////////////////////////////////////////////// 122 void t_satPhaseBias::writeEpoch(std::ostream* out, const QList<t_satPhaseBias>& biasList) { 123 124 } 125 126 // 127 //////////////////////////////////////////////////////////////////////////// 128 void t_satPhaseBias::readEpoch(const QStringList& lines, QList<t_satPhaseBias>& biasList) { 129 } -
trunk/BNC/src/satObs.h
r6475 r6481 106 106 }; 107 107 108 class t_frqPhaseBias { 109 public: 110 t_frqPhaseBias() { 111 _value = 0.0; 112 _fixIndicator = 0; 113 _fixWideLaneIndicator = 0; 114 _jumpCounter = 0; 115 } 116 std::string _rnxType2ch; 117 double _value; 118 int _fixIndicator; 119 int _fixWideLaneIndicator; 120 int _jumpCounter; 121 }; 122 123 class t_satPhaseBias { 124 public: 125 t_satPhaseBias() { 126 _yawDeg = 0.0; 127 _yawDegRate = 0.0; 128 } 129 static void writeEpoch(std::ostream* out, const QList<t_satPhaseBias>& biasList); 130 static void readEpoch(const QStringList& lines, QList<t_satPhaseBias>& biasList); 131 std::string _staID; 132 t_prn _prn; 133 bncTime _time; 134 double _yawDeg; 135 double _yawDegRate; 136 std::vector<t_frqPhaseBias> _bias; 137 }; 138 108 139 #endif
Note:
See TracChangeset
for help on using the changeset viewer.