Changeset 8167 in ntrip for branches/BNC_2.12/src/rinex
- Timestamp:
- Oct 26, 2017, 2:43:58 PM (7 years ago)
- Location:
- branches/BNC_2.12/src/rinex
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/rinex/reqcedit.cpp
r8000 r8167 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 } -
branches/BNC_2.12/src/rinex/rnxnavfile.cpp
r8000 r8167 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 && -
branches/BNC_2.12/src/rinex/rnxobsfile.cpp
r8149 r8167 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
Note:
See TracChangeset
for help on using the changeset viewer.