Changeset 10251 in ntrip for trunk/BNC/src/pppOptions.cpp


Ignore:
Timestamp:
Nov 20, 2023, 10:23:42 PM (8 months ago)
Author:
stuerze
Message:

changes regarding PPP: allow single frequency PPP and allow to select the frequency bands that are used

File:
1 edited

Legend:

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

    r8905 r10251  
    7979//
    8080//////////////////////////////////////////////////////////////////////////////
     81const std::vector<char>& t_pppOptions::frqBands(char system) const {
     82
     83  if      (system == 'R') {
     84    return _frqBandsGLONASS;
     85  }
     86  else if (system == 'E') {
     87    return _frqBandsGalileo;
     88  }
     89  else if (system == 'C') {
     90    return  _frqBandsBDS;
     91  }
     92  else {
     93    return _frqBandsGPS;
     94  }
     95}
     96
     97//
     98//////////////////////////////////////////////////////////////////////////////
    8199bool t_pppOptions::useOrbClkCorr() const {
    82100  if (_realTime) {
Note: See TracChangeset for help on using the changeset viewer.