Changeset 10982 in ntrip for trunk/BNC/src/bncrinex.cpp


Ignore:
Timestamp:
Jul 31, 2026, 11:26:36 AM (5 days ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

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

    r10979 r10982  
    349349  int statIDlength;
    350350  if (n > 9) {
    351     statIDlength = 9; // rnx3
    352   }
    353   else if (n > 4) {
    354     statIDlength = 4; // rnx2
    355   }
    356   else {
     351    statIDlength = 9; // rnx3/4
     352  }
     353  else if (n >= 4) {
    357354    statIDlength = n;
    358355  }
    359   QString ID = _statID.left(statIDlength);
     356  QString ID = _statID.left(statIDlength);
     357
    360358  ID = ID.toUpper();
    361359
Note: See TracChangeset for help on using the changeset viewer.