Changeset 222 in ntrip for trunk/BNC/RTCM3


Ignore:
Timestamp:
Oct 7, 2006, 11:57:05 AM (18 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

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

    r131 r222  
    1616 * -----------------------------------------------------------------------*/
    1717
     18#include <iostream>
    1819#include <math.h>
    1920
     
    5758
    5859        if (rr == 2) {
    59           cerr << "No valid RINEX! All values are modulo 299792.458!\n";
     60          std::cerr << "No valid RINEX! All values are modulo 299792.458!\n";
    6061          exit(1);
    6162        }
     
    6364        for (int ii = 0; ii < _Parser.Data.numsats; ii++) {
    6465          Observation* obs = new Observation();
    65          
    66 ////      obs->statID   =
    67 ////      obs->cumuLossOfCont =
    68 
    6966          obs->SVPRN    = _Parser.Data.satellites[ii];
    7067          obs->GPSWeek  = _Parser.Data.week;
    71           obs->GPSWeeks = (int) (_Parser.Data.timeofweek / 1000.0);
    72           obs->sec      = fmod(_Parser.Data.timeofweek / 1000.0, 3600.0);
     68          obs->GPSWeeks = _Parser.Data.timeofweek / 1000.0;
    7369
    7470          for (int jj = 0; jj < _Parser.numdatatypes; jj++) {
     
    8278            if      (_Parser.dataflag[jj] & GNSSDF_C1DATA) {
    8379              obs->C1 = _Parser.Data.measdata[ii][_Parser.datapos[jj]];
    84               obs->pCodeIndicator = 0;
    8580            }
    8681            else if (_Parser.dataflag[jj] & GNSSDF_P1DATA) {
    87               obs->C1 = _Parser.Data.measdata[ii][_Parser.datapos[jj]];
    88               obs->pCodeIndicator = 1;
     82              obs->P1 = _Parser.Data.measdata[ii][_Parser.datapos[jj]];
    8983            }
    9084            else if (_Parser.dataflag[jj] & GNSSDF_P2DATA) {
     
    10094            }
    10195          }
    102           m_lObsList.push_back(obs);
     96          _obsList.push_back(obs);
    10397        }
    10498      }
Note: See TracChangeset for help on using the changeset viewer.