Changeset 6587 in ntrip
- Timestamp:
- Feb 15, 2015, 12:03:59 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/rnxobsfile.cpp
r6586 r6587 1051 1051 1052 1052 for (unsigned iSat = 0; iSat < epo->rnxSat.size(); iSat++) { 1053 const t_rnxSat& rnxSat = epo->rnxSat[iSat]; 1054 char sys = rnxSat.prn.system(); 1055 1056 *stream << rnxSat.prn.toString().c_str(); 1053 const t_rnxSat& rnxSat = epo->rnxSat[iSat]; 1054 char sys = rnxSat.prn.system(); 1055 bool sysFound = false; 1057 1056 1058 1057 const t_rnxObs* hlp[header.nTypes(sys)]; … … 1070 1069 if (typeV3 == type2to3(sys, type) && rnxObs.value != 0.0) { 1071 1070 hlp[iTypeV3] = &itObs.value(); 1071 sysFound = true; 1072 1072 } 1073 1073 } … … 1082 1082 if (hlp[iTypeV3] == 0 && typeV3 == type2to3(sys, type).left(2) && rnxObs.value != 0.0) { 1083 1083 hlp[iTypeV3] = &itObs.value(); 1084 } 1085 } 1086 } 1084 sysFound = true; 1085 } 1086 } 1087 } 1088 1089 if (!sysFound) { 1090 continue; 1091 } 1092 1093 *stream << rnxSat.prn.toString().c_str(); 1087 1094 1088 1095 for (int iTypeV3 = 0; iTypeV3 < header.nTypes(sys); iTypeV3++) {
Note:
See TracChangeset
for help on using the changeset viewer.