Changeset 6403 in ntrip for trunk/BNC/src/upload
- Timestamp:
- Dec 22, 2014, 11:38:17 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/src/upload/bncephuploadcaster.cpp ¶
r5855 r6403 68 68 unsigned char Array[80]; 69 69 int size = 0; 70 t_ephGPS* ephGPS = dynamic_cast<t_ephGPS*>(eph); 71 t_ephGlo* ephGlo = dynamic_cast<t_ephGlo*>(eph); 72 t_ephGal* ephGal = dynamic_cast<t_ephGal*>(eph); 70 t_ephGPS* ephGPS = dynamic_cast<t_ephGPS*>(eph); 71 t_ephGlo* ephGlo = dynamic_cast<t_ephGlo*>(eph); 72 t_ephGal* ephGal = dynamic_cast<t_ephGal*>(eph); 73 t_ephSBAS* ephSBAS = dynamic_cast<t_ephSBAS*>(eph); 74 t_ephCompass* ephCompass = dynamic_cast<t_ephCompass*>(eph); 73 75 if (ephGPS) { 74 76 size = t_ephEncoder::RTCM3(*ephGPS, Array); … … 79 81 else if (ephGal) { 80 82 size = t_ephEncoder::RTCM3(*ephGal, Array); 83 } 84 else if (ephSBAS) { 85 size = t_ephEncoder::RTCM3(*ephSBAS, Array); 86 } 87 else if (ephCompass) { 88 size = t_ephEncoder::RTCM3(*ephCompass, Array); 81 89 } 82 90 if (size > 0) {
Note:
See TracChangeset
for help on using the changeset viewer.