Changeset 11019 in ntrip for trunk/BNC/src/pppCrdFile.h


Ignore:
Timestamp:
Sep 10, 2026, 3:45:13 PM (3 hours ago)
Author:
stuerze
Message:

added epoch/velocity fields to PPP coordinates file to allow BNC to propagate the reference coordinates related to a dedicated reference epoch to the current epoch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/pppCrdFile.h

    r7523 r11019  
    1313   public:
    1414    t_staInfo() {
    15       _xyz.ReSize(3);    _xyz    = 0.0;
    16       _neuAnt.ReSize(3); _neuAnt = 0.0;
     15      _xyz.ReSize(3);      _xyz      = 0.0;
     16      _neuAnt.ReSize(3);   _neuAnt   = 0.0;
     17      _velocity.ReSize(3); _velocity = 0.0;
     18      _epoch = 0.0;
    1719    }
    1820    std::string  _name;
     
    2123    ColumnVector _xyz;
    2224    ColumnVector _neuAnt;
     25    ColumnVector _velocity; // ITRF velocity Vx, Vy, Vz [m/year], zero if unused
     26    double       _epoch;    // reference (decimal year) epoch of _xyz, zero if unused
    2327  };
    2428
Note: See TracChangeset for help on using the changeset viewer.