Changeset 341 in ntrip for trunk/BNC/bncrinex.cpp


Ignore:
Timestamp:
Dec 1, 2006, 2:24:04 PM (17 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncrinex.cpp

    r337 r341  
    443443    iSat++;
    444444    Observation* ob = it.next();
    445     int prn = ob->SVPRN;
    446     if        (prn <= PRN_GPS_END) {
    447       _out << "G" << setw(2) << prn;
    448     }
    449     else if (prn >= PRN_GLONASS_START && prn <= PRN_GLONASS_END) {
    450       _out << "R" << setw(2) << prn - PRN_GLONASS_START + 1;
    451     }
    452     else {
    453       _out << "R" << setw(2) << prn % 100;
    454     }
     445    _out << ob->satSys << setw(2) << ob->satNum;
    455446    if (iSat == 12 && it.hasNext()) {
    456447      _out << endl << "                                ";
Note: See TracChangeset for help on using the changeset viewer.