Changeset 3052 in ntrip for trunk/BNC/bncantex.cpp


Ignore:
Timestamp:
Feb 25, 2011, 4:22:14 PM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncantex.cpp

    r3034 r3052  
    207207}
    208208
     209// Satellite Antenna Offset
     210////////////////////////////////////////////////////////////////////////////
     211t_irc bncAntex::offset(const QString& prn, ColumnVector& neu) {
     212  QMap<QString, t_antMap*>::const_iterator it = _maps.find(prn);
     213  if (it != _maps.end()) {
     214    t_antMap* map = it.value();
     215    neu[0] = map->frqMapL1->neu[0];
     216    neu[1] = map->frqMapL1->neu[1];
     217    neu[2] = map->frqMapL1->neu[2];
     218    return success;
     219  }
     220  else {
     221    return failure;
     222  }
     223}
     224
    209225// Phase Center Offset (Receiver Antenna and GPS only)
    210226////////////////////////////////////////////////////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.