Changeset 10273 in ntrip for tags/BNC_2.13.0


Ignore:
Timestamp:
Dec 4, 2023, 10:59:30 PM (6 months ago)
Author:
stuerze
Message:

minor changes

Location:
tags/BNC_2.13.0/src/combination
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tags/BNC_2.13.0/src/combination/bncbiassnx.cpp

    r10227 r10273  
    119119    else if (line.indexOf("BIAS_MODE") == 1) {
    120120       if      (line.contains("ABSOLUTE")) {
    121          _type = ABSOLUTE;
     121         _type = ABS;
    122122       }
    123123       else if (line.contains("RELATIVE")) {
    124          _type = RELATIVE;
     124         _type = REL;
    125125       }
    126126    }
     
    176176  inFile.close();
    177177
    178   if (_type == ABSOLUTE) {
     178  if (_type == ABS) {
    179179    getDsbFromOsb();
    180180  }
  • tags/BNC_2.13.0/src/combination/bncbiassnx.h

    r10216 r10273  
    4040#include "t_prn.h"
    4141
    42 
    43 
    44 
    45 
    4642class snxSatCodeBias {
    4743 public:
     
    6561
    6662 private:
    67   enum e_type {ABSOLUTE, RELATIVE};
     63  enum e_type {ABS, REL};
    6864  void clear();
    6965  t_irc bncTimeFromSinex(QString snxStr, bncTime& time);
Note: See TracChangeset for help on using the changeset viewer.