Changeset 4097 in ntrip
- Timestamp:
- May 1, 2012, 8:21:14 AM (13 years ago)
- Location:
- trunk/BNC/RTCM3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM3/ephemeris.cpp
r4029 r4097 35 35 //////////////////////////////////////////////////////////////////////////// 36 36 void t_ephGPS::set(const gpsephemeris* ee) { 37 38 _receptDateTime = currentDateAndTimeGPS(); 37 39 38 40 _prn = QString("G%1").arg(ee->satellite, 2, 10, QChar('0')); … … 374 376 //////////////////////////////////////////////////////////////////////////// 375 377 void t_ephGlo::set(const glonassephemeris* ee) { 378 379 _receptDateTime = currentDateAndTimeGPS(); 376 380 377 381 _prn = QString("R%1").arg(ee->almanac_number, 2, 10, QChar('0')); … … 557 561 void t_ephGal::set(const galileoephemeris* ee) { 558 562 563 _receptDateTime = currentDateAndTimeGPS(); 564 559 565 _prn = QString("E%1").arg(ee->satellite, 2, 10, QChar('0')); 560 566 -
trunk/BNC/RTCM3/ephemeris.h
r4029 r4097 36 36 } 37 37 QString prn() const {return _prn;} 38 void setReceptDateTime(const QDateTime& dateTime) {39 _receptDateTime = dateTime;40 }41 38 const QDateTime& receptDateTime() const {return _receptDateTime;} 42 39
Note:
See TracChangeset
for help on using the changeset viewer.