- Timestamp:
- Jul 31, 2026, 11:26:36 AM (5 days ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
-
bnchelp.html (modified) (1 diff)
-
bncrinex.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnchelp.html
r10979 r10982 1618 1618 </p> 1619 1619 <p> 1620 When producing RINEX Observation files from mountpoints like 'BRUX00BEL0' ,'WTZR_RTCM3', and 'BRUX0', the following skeleton filenames would be accepted1620 When producing RINEX Observation files from mountpoints like 'BRUX00BEL0' or 'WTZR_RTCM3', the following skeleton filenames would be accepted 1621 1621 </p> 1622 1622 <pre> 1623 1623 BRUX00BEL.skl (9 char corresponding to RINEX version 3,4) 1624 1624 WTZR_RTCM.skl (9 char corresponding to RINEX version 3,4) 1625 BRUX.skl (4 char corresponding to RINEX version 2)1626 1625 </pre> 1627 1626 <p> -
trunk/BNC/src/bncrinex.cpp
r10979 r10982 349 349 int statIDlength; 350 350 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) { 357 354 statIDlength = n; 358 355 } 359 QString ID = _statID.left(statIDlength); 356 QString ID = _statID.left(statIDlength); 357 360 358 ID = ID.toUpper(); 361 359
Note:
See TracChangeset
for help on using the changeset viewer.
