Changeset 6598 in ntrip for trunk/BNC/src/RTCM3
- Timestamp:
- Feb 19, 2015, 6:18:11 PM (10 years ago)
- Location:
- trunk/BNC/src/RTCM3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
r6595 r6598 78 78 connect(this, SIGNAL(newGalileoEph(t_ephGal)), BNC_CORE, SLOT(slotNewGalileoEph(t_ephGal))); 79 79 connect(this, SIGNAL(newSBASEph(t_ephSBAS)), BNC_CORE, SLOT(slotNewSBASEph(t_ephSBAS))); 80 connect(this, SIGNAL(new CompassEph(t_ephCompass)), BNC_CORE, SLOT(slotNewCompassEph(t_ephCompass)));80 connect(this, SIGNAL(newBDSEph(t_ephBDS)), BNC_CORE, SLOT(slotNewBDSEph(t_ephBDS))); 81 81 82 82 // Mode can be either observations or corrections … … 262 262 } 263 263 264 // COMPASS264 // BDS 265 265 // ------------- 266 else if (satID >= PRN_ COMPASS_START && satID <= PRN_COMPASS_END) {267 obs._prn.set('C', satID - PRN_ COMPASS_START + 1);266 else if (satID >= PRN_BDS_START && satID <= PRN_BDS_END) { 267 obs._prn.set('C', satID - PRN_BDS_START + 1); 268 268 } 269 269 … … 412 412 } 413 413 414 // COMPASS Ephemeris414 // BDS Ephemeris 415 415 // ----------------- 416 else if (rr == 63) {417 decoded = true; 418 // t_ephCompass eph; eph.set(&parser.ephemerisCompass);419 // emit newCompassEph(eph);416 else if (rr == RTCM3ID_BDS) { 417 decoded = true; 418 t_ephBDS eph; eph.set(&parser.ephemerisBDS); 419 emit newBDSEph(eph); 420 420 } 421 421 } -
trunk/BNC/src/RTCM3/RTCM3Decoder.h
r6595 r6598 52 52 void newSBASEph(t_ephSBAS eph); 53 53 void newGalileoEph(t_ephGal eph); 54 void new CompassEph(t_ephCompasseph);54 void newBDSEph(t_ephBDS eph); 55 55 56 56 private:
Note:
See TracChangeset
for help on using the changeset viewer.