Changeset 9652 in ntrip for trunk/BNC/src/bncoutf.cpp


Ignore:
Timestamp:
Mar 11, 2022, 9:57:17 AM (2 years ago)
Author:
stuerze
Message:

Bias SINEX file can be written now during SSR upload

File:
1 edited

Legend:

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

    r9418 r9652  
    7272  int indHlp = intStr.indexOf("min");
    7373  if (!sampl) {
    74     sampl++;
     74    if (_sklBaseName.contains("V3PROD")){
     75      sampl +=5;
     76    } else {
     77      sampl++;
     78    }
    7579  }
    7680
     
    160164      addition = QString("_CLK");
    161165    }
     166    if (_extension.contains("bia") || _extension.contains("BIA")) {
     167      addition = QString("_ABS");
     168    }
    162169  if (_extension.count(".") == 2) {
    163170    _extension.replace(0,1,"_");
     
    214221  return success;
    215222}
     223
     224QString bncoutf::agencyFromFileName() {
     225  return QString("%1").arg(_sklBaseName.left(3));
     226}
Note: See TracChangeset for help on using the changeset viewer.