Changeset 4484 in ntrip
- Timestamp:
- Aug 3, 2012, 8:31:04 PM (12 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncrinex.cpp
r4483 r4484 92 92 93 93 _samplingRate = settings.value("rnxSampl").toInt(); 94 95 // Initialize RINEX v2 Types 96 // ------------------------- 97 _header._obsTypesV2 << "C1" << "P1" << "L1" << "S1" 98 << "C2" << "P2" << "L2" << "S2"; 94 99 95 100 // Initialize RINEX v3 Types -
trunk/BNC/src/rinex/rnxobsfile.cpp
r4481 r4484 302 302 *stream << obsTypesStrings().join(""); 303 303 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 } 308 310 309 311 unsigned year, month, day, hour, min;
Note:
See TracChangeset
for help on using the changeset viewer.