Changeset 3960 in ntrip for trunk/BNC/rinex
- Timestamp:
- Apr 20, 2012, 11:25:35 AM (13 years ago)
- Location:
- trunk/BNC/rinex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/rinex/rnxobsfile.cpp
r3956 r3960 595 595 const QString& typeV2 = header._obsTypesV2[ii]; 596 596 for (unsigned iSys = 0; iSys < systems.length(); iSys++) { 597 char sys = systems[iSys]; 598 _header._obsTypesV3[sys].push_back( type2to3(sys, typeV2) ); 597 char sys = systems[iSys]; 598 QString typeV3 = type2to3(sys, typeV2); 599 if (!typeV3.isEmpty()) { 600 _header._obsTypesV3[sys].push_back(typeV3); 601 _indexMap2to3[sys][ii] = _header._obsTypesV3[sys].size() - 1; 602 } 603 else { 604 _indexMap2to3[sys][ii] = -1; 605 } 599 606 } 600 607 } -
trunk/BNC/rinex/rnxobsfile.h
r3956 r3960 141 141 const t_rnxEpo* nextEpochV3(); 142 142 void handleEpochFlag(int flag, const QString& line); 143 143 144 QString type2to3(char sys, const QString& typeV2); 145 QString type3to2(char sys, const QString& typeV3); 146 147 std::map<char, std::map<int, int> > _indexMap2to3; 148 std::map<char, std::map<int, int> > _indexMap3to2; 144 149 145 150 e_inpOut _inpOut;
Note:
See TracChangeset
for help on using the changeset viewer.