Changeset 10982 in ntrip for trunk


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

minor changes

Location:
trunk/BNC/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bnchelp.html

    r10979 r10982  
    16181618</p>
    16191619<p>
    1620 When producing RINEX Observation files from mountpoints like 'BRUX00BEL0', 'WTZR_RTCM3', and 'BRUX0', the following skeleton filenames would be accepted
     1620When producing RINEX Observation files from mountpoints like 'BRUX00BEL0' or 'WTZR_RTCM3', the following skeleton filenames would be accepted
    16211621</p>
    16221622<pre>
    16231623   BRUX00BEL.skl (9 char corresponding to RINEX version 3,4)
    16241624   WTZR_RTCM.skl (9 char corresponding to RINEX version 3,4)
    1625    BRUX.skl (4 char corresponding to RINEX version 2)
    16261625</pre>
    16271626<p>
  • 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.