Changeset 4559 in ntrip for trunk/BNC/src/rinex


Ignore:
Timestamp:
Aug 28, 2012, 11:57:41 AM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/reqcanalyze.cpp

    r4558 r4559  
    292292  }
    293293
     294  // Signal-to-Noise
     295  // ---------------
     296  double S1 = obs.measdata("S1", 3.0);
     297  if (S1 != 0.0) {
     298    newObs->_SNR1 = S1;
     299    okFlag = true;
     300  }
     301  double S2 = obs.measdata("S2", 3.0);
     302  if (S2 != 0.0) {
     303    newObs->_SNR2 = S2;
     304    okFlag = true;
     305  }
     306
    294307  // Remember the Observation
    295308  // ------------------------
Note: See TracChangeset for help on using the changeset viewer.