Changeset 7987 in ntrip for branches/BNC_2.12/src/rinex


Ignore:
Timestamp:
Jul 21, 2016, 6:07:31 PM (8 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/rinex/rnxobsfile.cpp

    r7985 r7987  
    15911591    switch (sys) {
    15921592      case 'G':
    1593         result << "G:12&PWCSLXYN G:5&IQX";
     1593        result.append("12&PWCSLXYN");
     1594        result.append("5&IQX");
    15941595        break;
    15951596      case 'R':
    1596         result << "R:12&PC R:3&IQX";
     1597        result.append("12&PC");
     1598        result.append("3&IQX");
    15971599        break;
    15981600      case 'E':
    1599         result << "E:16&BCX E:578&IQX";
     1601        result.append("16&BCX");
     1602        result.append("578&IQX");
    16001603        break;
    16011604      case 'J':
    1602         result << "J:1&SLXCZ J:26&SLX J:5&IQX";
     1605        result.append("1&SLXCZ");
     1606        result.append("26&SLX");
     1607        result.append("5&IQX");
    16031608        break;
    16041609      case 'C':
    1605         result << "C:IQX";
     1610        result.append("IQX");
    16061611        break;
    16071612      case 'I':
    1608         result << "I:ABCX";
     1613        result.append("ABCX");
    16091614        break;
    16101615      case 'S':
    1611         result << "S:1&C S:5&IQX";
     1616        result.append("1&C");
     1617        result.append("5&IQX");
    16121618        break;
    16131619    }
Note: See TracChangeset for help on using the changeset viewer.