OrbitDataSP3.hpp
Go to the documentation of this file.
1 //==============================================================================
2 //
3 // This file is part of GNSSTk, the ARL:UT GNSS Toolkit.
4 //
5 // The GNSSTk is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU Lesser General Public License as published
7 // by the Free Software Foundation; either version 3.0 of the License, or
8 // any later version.
9 //
10 // The GNSSTk is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU Lesser General Public License for more details.
14 //
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with GNSSTk; if not, write to the Free Software Foundation,
17 // Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
18 //
19 // This software was developed by Applied Research Laboratories at the
20 // University of Texas at Austin.
21 // Copyright 2004-2022, The Board of Regents of The University of Texas System
22 //
23 //==============================================================================
24 
25 
26 //==============================================================================
27 //
28 // This software was developed by Applied Research Laboratories at the
29 // University of Texas at Austin, under contract to an agency or agencies
30 // within the U.S. Department of Defense. The U.S. Government retains all
31 // rights to use, duplicate, distribute, disclose, or release this software.
32 //
33 // Pursuant to DoD Directive 523024
34 //
35 // DISTRIBUTION STATEMENT A: This software has been approved for public
36 // release, distribution is unlimited.
37 //
38 //==============================================================================
39 #ifndef GNSSTK_ORBITDATASP3_HPP
40 #define GNSSTK_ORBITDATASP3_HPP
41 
42 #include <vector>
43 #include "OrbitData.hpp"
44 
45 namespace gnsstk
46 {
48 
49 
51  class OrbitDataSP3 : public OrbitData
52  {
53  public:
55  OrbitDataSP3();
57  NavDataPtr clone() const override
58  { return std::make_shared<OrbitDataSP3>(*this); }
59 
63  void copyXV(const OrbitDataSP3& right);
67  void copyT(const OrbitDataSP3& right);
72  bool validate() const override
73  { return true; }
79  void dump(std::ostream& s, DumpDetail dl) const override;
87  bool getXvt(const CommonTime& when, Xvt& xvt,
88  const ObsID& oid = ObsID()) override;
89 
96  double clkBias;
97  double biasSig;
98  double clkDrift;
99  double driftSig;
100  double clkDrRate;
101  double drRateSig;
102  std::string coordSystem;
106  };
107 
109 
110 }
111 
112 #endif // GNSSTK_ORBITDATASP3_HPP
gnsstk::NavDataPtr
std::shared_ptr< NavData > NavDataPtr
Factories instantiate these in response to find() requests.
Definition: NavData.hpp:62
gnsstk::OrbitDataSP3::posSig
Triple posSig
Standard deviation of position.
Definition: OrbitDataSP3.hpp:91
gnsstk::OrbitDataSP3::driftSig
double driftSig
SV clock drift std deviation in microseconds/sec.
Definition: OrbitDataSP3.hpp:99
gnsstk::OrbitDataSP3::vel
Triple vel
ECEF velocity (dm/s) of satellite at time.
Definition: OrbitDataSP3.hpp:92
gnsstk::OrbitDataSP3::copyXV
void copyXV(const OrbitDataSP3 &right)
Definition: OrbitDataSP3.cpp:58
gnsstk::OrbitDataSP3::velSig
Triple velSig
Standard deviation of velocity.
Definition: OrbitDataSP3.hpp:93
gnsstk::OrbitDataSP3::dump
void dump(std::ostream &s, DumpDetail dl) const override
Definition: OrbitDataSP3.cpp:106
example5.oid
oid
Definition: example5.py:29
gnsstk::OrbitDataSP3::clkBias
double clkBias
SV clock bias in microseconds.
Definition: OrbitDataSP3.hpp:96
gnsstk::OrbitDataSP3::accSig
Triple accSig
Standard deviation of acceleration.
Definition: OrbitDataSP3.hpp:95
gnsstk::OrbitDataSP3::clone
NavDataPtr clone() const override
Create a deep copy of this object.
Definition: OrbitDataSP3.hpp:57
gnsstk::RefFrame
Definition: RefFrame.hpp:53
gnsstk::Triple
Definition: Triple.hpp:68
gnsstk
For Sinex::InputHistory.
Definition: BasicFramework.cpp:50
gnsstk::OrbitDataSP3::validate
bool validate() const override
Definition: OrbitDataSP3.hpp:72
gnsstk::OrbitDataSP3::coordSystem
std::string coordSystem
Copy of SP3Header::coordSystem since it might not translate.
Definition: OrbitDataSP3.hpp:103
gnsstk::OrbitDataSP3::pos
Triple pos
ECEF position (km) of satellite at time.
Definition: OrbitDataSP3.hpp:90
gnsstk::ObsID
Definition: ObsID.hpp:82
gnsstk::CommonTime
Definition: CommonTime.hpp:84
gnsstk::Xvt
Definition: Xvt.hpp:60
gnsstk::OrbitDataSP3::copyT
void copyT(const OrbitDataSP3 &right)
Definition: OrbitDataSP3.cpp:70
gnsstk::OrbitDataSP3::clkDrift
double clkDrift
SV clock drift in s/s.
Definition: OrbitDataSP3.hpp:98
gnsstk::OrbitDataSP3::acc
Triple acc
Acceleration (m/s/s) of satellite at time.
Definition: OrbitDataSP3.hpp:94
gnsstk::OrbitDataSP3::getXvt
bool getXvt(const CommonTime &when, Xvt &xvt, const ObsID &oid=ObsID()) override
Definition: OrbitDataSP3.cpp:82
gnsstk::DumpDetail
DumpDetail
Specify level of detail for dump output.
Definition: DumpDetail.hpp:51
gnsstk::OrbitDataSP3::clkDrRate
double clkDrRate
SV clock drift rate in s/s**2.
Definition: OrbitDataSP3.hpp:100
OrbitData.hpp
gnsstk::OrbitDataSP3::biasSig
double biasSig
SV clock bias std deviation in microseconds.
Definition: OrbitDataSP3.hpp:97
gnsstk::OrbitDataSP3
Class for orbit information using SP3 data tables.
Definition: OrbitDataSP3.hpp:51
gnsstk::OrbitData
Definition: OrbitData.hpp:53
gnsstk::OrbitDataSP3::OrbitDataSP3
OrbitDataSP3()
Set the vector sizes and initialize everything to 0.
Definition: OrbitDataSP3.cpp:46
gnsstk::OrbitDataSP3::frame
RefFrame frame
Translation of coordSystem into an enum, if possible.
Definition: OrbitDataSP3.hpp:105
gnsstk::OrbitDataSP3::drRateSig
double drRateSig
Definition: OrbitDataSP3.hpp:101


gnsstk
Author(s):
autogenerated on Wed Oct 25 2023 02:40:40