Changeset 6391 in ntrip
- Timestamp:
- Dec 20, 2014, 10:47:02 AM (10 years ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcedit.cpp
r6377 r6391 518 518 ephs.append(new t_ephGPS(*dynamic_cast<t_ephGPS*>(eph))); 519 519 } 520 } 521 } 522 } 520 else if (eph->type() == t_eph::SBAS) { 521 ephs.append(new t_ephSBAS(*dynamic_cast<t_ephSBAS*>(eph))); 522 } 523 } 524 } 525 } -
trunk/BNC/src/rinex/rnxnavfile.cpp
r6377 r6391 187 187 } 188 188 eph = new t_ephGPS(version(), lines); 189 } 190 else if (prn[0] == 'S') { 191 for (int ii = 1; ii < 4; ii++) { 192 lines << stream->readLine(); 193 } 194 eph = new t_ephSBAS(version(), lines); 189 195 } 190 196 if (eph && eph->ok()) {
Note:
See TracChangeset
for help on using the changeset viewer.