GNSS-SDR  0.0.19
An Open Source GNSS Software Defined Receiver
gps_cnav_iono.h
Go to the documentation of this file.
1 /*!
2  * \file gps_cnav_iono.h
3  * \brief Interface of a GPS CNAV IONOSPHERIC MODEL storage
4  * \author Javier Arribas, 2015. jarribas(at)cttc.es
5  *
6  * -----------------------------------------------------------------------------
7  *
8  * GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
9  * This file is part of GNSS-SDR.
10  *
11  * Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
12  * SPDX-License-Identifier: GPL-3.0-or-later
13  *
14  * -----------------------------------------------------------------------------
15  */
16 
17 
18 #ifndef GNSS_SDR_GPS_CNAV_IONO_H
19 #define GNSS_SDR_GPS_CNAV_IONO_H
20 
21 #include "gps_iono.h"
22 
23 /** \addtogroup Core
24  * \{ */
25 /** \addtogroup System_Parameters
26  * \{ */
27 
28 
29 /*!
30  * \brief This class is a storage for the GPS IONOSPHERIC data as described in IS-GPS-200M
31  *
32  * See https://www.gps.gov/technical/icwg/IS-GPS-200M.pdf Appendix III
33  */
34 class Gps_CNAV_Iono : public Gps_Iono
35 {
36 public:
37  Gps_CNAV_Iono() = default; //!< Default constructor
38 };
39 
40 
41 /** \} */
42 /** \} */
43 #endif // GNSS_SDR_GPS_CNAV_IONO_H
This class is a storage for the GPS IONOSPHERIC data as described in IS-GPS-200M. ...
Definition: gps_iono.h:35
Gps_CNAV_Iono()=default
Default constructor.
This class is a storage for the GPS IONOSPHERIC data as described in IS-GPS-200M. ...
Definition: gps_cnav_iono.h:34
Interface of a GPS IONOSPHERIC MODEL storage.