Changeset 4484 in ntrip


Ignore:
Timestamp:
Aug 3, 2012, 8:31:04 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncrinex.cpp

    r4483 r4484  
    9292
    9393  _samplingRate = settings.value("rnxSampl").toInt();
     94
     95  // Initialize RINEX v2 Types
     96  // -------------------------
     97  _header._obsTypesV2 << "C1" << "P1" << "L1" << "S1"
     98                      << "C2" << "P2" << "L2" << "S2";
    9499
    95100  // Initialize RINEX v3 Types
  • trunk/BNC/src/rinex/rnxobsfile.cpp

    r4481 r4484  
    302302  *stream << obsTypesStrings().join("");
    303303
    304   *stream << QString("%1")
    305     .arg(_interval, 10, 'f', 3)
    306     .leftJustified(60)
    307            << "INTERVAL\n";
     304  if (_interval > 0) {
     305    *stream << QString("%1")
     306      .arg(_interval, 10, 'f', 3)
     307      .leftJustified(60)
     308             << "INTERVAL\n";
     309  }
    308310
    309311  unsigned year, month, day, hour, min;
Note: See TracChangeset for help on using the changeset viewer.