GNSS-SDR  0.0.13
An Open Source GNSS Software Defined Receiver
sbas_ephemeris.h
Go to the documentation of this file.
1 /*!
2  * \file sbas_ephemeris.h
3  * \brief Interface of a SBAS REFERENCE LOCATION storage
4  * \author Daniel Fehr, 2013. daniel.co(at)bluewin.ch
5  *
6  * -----------------------------------------------------------------------------
7  *
8  * Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
9  *
10  * GNSS-SDR is a software defined Global Navigation
11  * Satellite Systems receiver
12  *
13  * This file is part of GNSS-SDR.
14  *
15  * SPDX-License-Identifier: GPL-3.0-or-later
16  *
17  * -----------------------------------------------------------------------------
18  */
19 
20 
21 #ifndef GNSS_SDR_SBAS_EPHEMERIS_H
22 #define GNSS_SDR_SBAS_EPHEMERIS_H
23 
24 #include <ostream>
25 
26 /*!
27  * \brief This class stores SBAS SV ephemeris data
28  *
29  */
31 {
32 public:
33  Sbas_Ephemeris() = default;
34 
35  int i_prn{}; //!< PRN number
36  int i_t0{}; //!< Reference epoch time (GPST)
37  double d_tof{}; //!< Time of message frame (GPST)
38  int i_sv_ura{}; //!< SV accuracy (URA index), not standardized
39  bool b_sv_do_not_use{}; //!< Health status (false:do not use / true:usable)
40  double d_pos[3]{}; //!< Satellite position (m) (ECEF)
41  double d_vel[3]{}; //!< Satellite velocity (m/s) (ECEF)
42  double d_acc[3]{}; //!< Satellite acceleration (m/s^2) (ECEF)
43  double d_af0{}; //!< Satellite clock-offset (s)
44  double d_af1{}; //!< Satellite drift (s/s)
45 
46  void print(std::ostream &out);
47 };
48 
49 
50 #endif // GNSS_SDR_SBAS_EPHEMERIS_H
double d_pos[3]
Satellite position (m) (ECEF)
int i_sv_ura
SV accuracy (URA index), not standardized.
double d_acc[3]
Satellite acceleration (m/s^2) (ECEF)
double d_vel[3]
Satellite velocity (m/s) (ECEF)
double d_af0
Satellite clock-offset (s)
double d_af1
Satellite drift (s/s)
int i_prn
PRN number.
bool b_sv_do_not_use
Health status (false:do not use / true:usable)
This class stores SBAS SV ephemeris data.
int i_t0
Reference epoch time (GPST)
double d_tof
Time of message frame (GPST)