Changeset 6482 in ntrip
- Timestamp:
- Dec 28, 2014, 4:40:38 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/satObs.cpp
r6481 r6482 128 128 void t_satPhaseBias::readEpoch(const QStringList& lines, QList<t_satPhaseBias>& biasList) { 129 129 } 130 131 // 132 //////////////////////////////////////////////////////////////////////////// 133 void t_vTec::write(std::ostream* out, const t_vTec& vTec) { 134 135 } 136 137 // 138 //////////////////////////////////////////////////////////////////////////// 139 void t_vTec::read(const QStringList& lines, t_vTec& vTec) { 140 } -
trunk/BNC/src/satObs.h
r6481 r6482 137 137 }; 138 138 139 class t_vTecLayer { 140 public: 141 double _height; 142 Matrix _C; 143 Matrix _S; 144 }; 145 146 class t_vTec { 147 public: 148 static void write(std::ostream* out, const t_vTec& vTec); 149 static void read(const QStringList& lines, t_vTec& vTec); 150 std::string _staID; 151 bncTime _time; 152 std::vector<t_vTecLayer> _layers; 153 }; 154 139 155 #endif
Note:
See TracChangeset
for help on using the changeset viewer.