Changeset 4480 in ntrip


Ignore:
Timestamp:
Aug 3, 2012, 7:16:51 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/rinex
Files:
2 edited

Legend:

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

    r4233 r4480  
    4848using namespace std;
    4949
    50 const QString t_rnxObsFile::t_rnxObsHeader::_emptyStr;
     50const QString t_rnxObsHeader::_emptyStr;
    5151
    5252// Constructor
    5353////////////////////////////////////////////////////////////////////////////
    54 t_rnxObsFile::t_rnxObsHeader::t_rnxObsHeader() {
     54t_rnxObsHeader::t_rnxObsHeader() {
    5555  _antNEU.ReSize(3); _antNEU = 0.0;
    5656  _antXYZ.ReSize(3); _antXYZ = 0.0;
     
    6767// Destructor
    6868////////////////////////////////////////////////////////////////////////////
    69 t_rnxObsFile::t_rnxObsHeader::~t_rnxObsHeader() {
     69t_rnxObsHeader::~t_rnxObsHeader() {
    7070}
    7171
    7272// Read Header
    7373////////////////////////////////////////////////////////////////////////////
    74 t_irc t_rnxObsFile::t_rnxObsHeader::read(QTextStream* stream, int maxLines) {
     74t_irc t_rnxObsHeader::read(QTextStream* stream, int maxLines) {
    7575  int numLines = 0;
    7676  while ( stream->status() == QTextStream::Ok && !stream->atEnd() ) {
     
    205205// Number of Observation Types (satellite-system specific)
    206206////////////////////////////////////////////////////////////////////////////
    207 int t_rnxObsFile::t_rnxObsHeader::nTypes(char sys) const {
     207int t_rnxObsHeader::nTypes(char sys) const {
    208208  if (_version < 3.0) {
    209209    return _obsTypesV2.size();
     
    221221// Observation Type (satellite-system specific)
    222222////////////////////////////////////////////////////////////////////////////
    223 const QString& t_rnxObsFile::t_rnxObsHeader::obsType(char sys, int index) const {
     223const QString& t_rnxObsHeader::obsType(char sys, int index) const {
    224224  if (_version < 3.0) {
    225225    return _obsTypesV2.at(index);
  • trunk/BNC/src/rinex/rnxobsfile.h

    r4137 r4480  
    3737
    3838#define MAXPRN_GPS 32
     39
     40class t_rnxObsHeader {
     41 public:
     42  t_rnxObsHeader();
     43  ~t_rnxObsHeader();
     44
     45  t_irc           read(QTextStream* stream, int maxLines = 0);
     46  int             nTypes(char sys) const;
     47  const QString&  obsType(char sys, int index) const;
     48
     49  static const QString          _emptyStr;
     50  float                         _version;
     51  double                        _interval;
     52  QString                       _antennaNumber;
     53  QString                       _antennaName;
     54  QString                       _markerName;
     55  QString                       _markerNumber;
     56  QString                       _observer;
     57  QString                       _agency;
     58  QString                       _receiverNumber;
     59  QString                       _receiverType;
     60  QString                       _receiverVersion;
     61  ColumnVector                  _antNEU;
     62  ColumnVector                  _antXYZ;
     63  ColumnVector                  _antBSG;
     64  ColumnVector                  _xyz;
     65  QVector<QString>              _obsTypesV2;
     66  QMap<char, QVector<QString> > _obsTypesV3;
     67  int                           _wlFactorsL1[MAXPRN_GPS+1];
     68  int                           _wlFactorsL2[MAXPRN_GPS+1];
     69  bncTime                       _startTime;
     70};
    3971
    4072class t_rnxObsFile {
     
    99131  }
    100132
    101  protected:
    102   t_rnxObsFile() {};
    103   void openRead(const QString& fileName);
    104   void openWrite(const QString& fileName);
    105   void close();
    106 
    107  private:
    108   class t_rnxObsHeader {
    109    public:
    110     t_rnxObsHeader();
    111     ~t_rnxObsHeader();
    112 
    113     t_irc           read(QTextStream* stream, int maxLines = 0);
    114     int             nTypes(char sys) const;
    115     const QString&  obsType(char sys, int index) const;
    116  
    117     static const QString          _emptyStr;
    118     float                         _version;
    119     double                        _interval;
    120     QString                       _antennaNumber;
    121     QString                       _antennaName;
    122     QString                       _markerName;
    123     QString                       _markerNumber;
    124     QString                       _observer;
    125     QString                       _agency;
    126     QString                       _receiverNumber;
    127     QString                       _receiverType;
    128     QString                       _receiverVersion;
    129     ColumnVector                  _antNEU;
    130     ColumnVector                  _antXYZ;
    131     ColumnVector                  _antBSG;
    132     ColumnVector                  _xyz;
    133     QVector<QString>              _obsTypesV2;
    134     QMap<char, QVector<QString> > _obsTypesV3;
    135     int                           _wlFactorsL1[MAXPRN_GPS+1];
    136     int                           _wlFactorsL2[MAXPRN_GPS+1];
    137     bncTime                       _startTime;
    138   };
    139 
    140  public:
    141133  const t_rnxObsHeader& header() const {return _header;}
    142134  void setHeader(const t_rnxObsHeader& header, double version);
     
    149141  enum e_trafo {trafoNone, trafo2to3, trafo3to2};
    150142
     143  t_rnxObsFile() {};
     144  void openRead(const QString& fileName);
     145  void openWrite(const QString& fileName);
     146  void close();
    151147  void writeEpochV2(const t_rnxEpo* epo);
    152148  void writeEpochV3(const t_rnxEpo* epo);
Note: See TracChangeset for help on using the changeset viewer.