Changeset 1268 in ntrip for trunk/BNC/RTCM3


Ignore:
Timestamp:
Dec 2, 2008, 10:31:46 PM (15 years ago)
Author:
zdenek
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM3/RTCM3Decoder.cpp

    r1263 r1268  
    236236          else if(rr == 1005)
    237237          {
    238             _antList5.push_back(_Parser.antX);
    239             _antList5.push_back(_Parser.antY);
    240             _antList5.push_back(_Parser.antZ);
     238            _antList.push_back(t_antInfo());
     239            _antList.back().type     = t_antInfo::ARP;
     240            _antList.back().xx       = _Parser.antX * 1e-4;
     241            _antList.back().yy       = _Parser.antY * 1e-4;
     242            _antList.back().zz       = _Parser.antZ * 1e-4;
     243            _antList.back().message  = rr;
    241244          }
    242245
     
    245248          else if(rr == 1006)
    246249          {
    247             _antList6.push_back(_Parser.antX);
    248             _antList6.push_back(_Parser.antY);
    249             _antList6.push_back(_Parser.antZ);
    250             _antList6.push_back(_Parser.antH);
     250            _antList.push_back(t_antInfo());
     251            _antList.back().type     = t_antInfo::ARP;
     252            _antList.back().xx       = _Parser.antX * 1e-4;
     253            _antList.back().yy       = _Parser.antY * 1e-4;
     254            _antList.back().zz       = _Parser.antZ * 1e-4;
     255            _antList.back().height   = _Parser.antH * 1e-4;
     256            _antList.back().height_f = true;
     257            _antList.back().message  = rr;
    251258          }
    252259
Note: See TracChangeset for help on using the changeset viewer.