Changeset 3286 in ntrip


Ignore:
Timestamp:
May 24, 2011, 11:23:21 AM (13 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncmodel.cpp

    r3281 r3286  
    245245  }
    246246
     247  // Antenna Eccentricities
     248  // ----------------------
     249  _dN = settings.value("pppRefdN").toDouble();
     250  _dE = settings.value("pppRefdE").toDouble();
     251  _dU = settings.value("pppRefdU").toDouble();
     252
    247253  // Bancroft Coordinates
    248254  // --------------------
     
    417423  }
    418424
    419   return satData->rho + phaseCenter + clk()
     425  double antennaOffset = 0.0;
     426  if (_dN != 0.0 || _dE != 0.0 || _dU != 0.0) {
     427
     428  }
     429
     430  return satData->rho + phaseCenter + antennaOffset + clk()
    420431                      + offset - satData->clk + tropDelay + wind;
    421432}
  • trunk/BNC/bncmodel.h

    r3119 r3286  
    158158  double                _sigAmb0;
    159159  double                _sigClk0;
     160  double                _dN;
     161  double                _dE;
     162  double                _dU;
    160163  bncAntex*             _antex;
    161164  QString               _antennaName;
Note: See TracChangeset for help on using the changeset viewer.