Changeset 9366 in ntrip for trunk/BNC/src/rinex
- Timestamp:
- Mar 11, 2021, 2:11:05 PM (4 years ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcedit.cpp
r8798 r9366 522 522 } 523 523 } 524 // TODO: enable user decision 524 // TODO: enable user decision 525 525 qStableSort(ephs.begin(), ephs.end(), t_eph::earlierTime); 526 //qStableSort(ephs.begin(), ephs.end(), t_eph::prnSort); 526 //qStableSort(ephs.begin(), ephs.end(), t_eph::prnSort); 527 527 } 528 528 -
trunk/BNC/src/rinex/rnxnavfile.cpp
r8368 r9366 175 175 } 176 176 else if (prn[0] == 'R') { 177 for (int ii = 1; ii < 4; ii++) { 177 int num = 4; 178 if (version() >= 3.05) { 179 num += 1; 180 } 181 for (int ii = 1; ii < num; ii++) { 178 182 lines << stream->readLine(); 179 183 } -
trunk/BNC/src/rinex/rnxnavfile.h
r8640 r9366 37 37 38 38 #define defaultRnxNavVersion2 2.11 39 #define defaultRnxNavVersion3 3.0 439 #define defaultRnxNavVersion3 3.05 40 40 41 41 class t_rnxNavFile {
Note:
See TracChangeset
for help on using the changeset viewer.