Changeset 8168 in ntrip for trunk/BNC/src/rinex
- Timestamp:
- Oct 26, 2017, 2:44:32 PM (7 years ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcedit.cpp
r8127 r8168 651 651 ephs.append(new t_ephBDS(*dynamic_cast<t_ephBDS*>(eph))); 652 652 } 653 else if (eph->type() == t_eph::IRNSS) { 654 ephs.append(new t_ephGPS(*dynamic_cast<t_ephGPS*>(eph))); 655 } 653 656 } 654 657 } -
trunk/BNC/src/rinex/rnxnavfile.cpp
r7999 r8168 203 203 } 204 204 eph = new t_ephBDS(version(), lines); 205 } 206 else if (prn[0] == 'I') { 207 for (int ii = 1; ii < 8; ii++) { 208 lines << stream->readLine(); 209 } 210 eph = new t_ephGPS(version(), lines); 205 211 } 206 212 if (eph && -
trunk/BNC/src/rinex/rnxobsfile.cpp
r8148 r8168 52 52 //////////////////////////////////////////////////////////////////////////// 53 53 t_rnxObsHeader::t_rnxObsHeader() { 54 _usedSystems = "GREJCS ";54 _usedSystems = "GREJCSI"; 55 55 _antNEU.ReSize(3); _antNEU = 0.0; 56 56 _antXYZ.ReSize(3); _antXYZ = 0.0; … … 447 447 << "C6I" << "L6I" << "S6I" 448 448 << "C7I" << "L7I" << "S7I"; 449 450 _obsTypes['I'] << "C5A" << "L5A" << "S5A" 451 << "C9A" << "L9A" << "S9A"; 449 452 } 450 453 else {
Note:
See TracChangeset
for help on using the changeset viewer.