GNSS-SDR  0.0.19
An Open Source GNSS Software Defined Receiver
beidou_dnav_iono.h
Go to the documentation of this file.
1 /*!
2  * \file beidou_dnav_iono.h
3  * \brief Interface of a BEIDOU IONOSPHERIC MODEL storage
4  * \author Sergi Segura, 2018. sergi.segura.munoz(at)gmail.com
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_BEIDOU_DNAV_IONO_H
19 #define GNSS_SDR_BEIDOU_DNAV_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 BEIDOU IONOSPHERIC data as described
31  * in ICD v2.1
32  */
33 class Beidou_Dnav_Iono : public Gps_Iono
34 {
35 public:
36  Beidou_Dnav_Iono() = default; //!< Default constructor
37 };
38 
39 
40 /** \} */
41 /** \} */
42 #endif // GNSS_SDR_BEIDOU_DNAV_IONO_H
This class is a storage for the GPS IONOSPHERIC data as described in IS-GPS-200M. ...
Definition: gps_iono.h:35
This class is a storage for the BEIDOU IONOSPHERIC data as described in ICD v2.1. ...
Beidou_Dnav_Iono()=default
Default constructor.
Interface of a GPS IONOSPHERIC MODEL storage.