This repository was archived by the owner on May 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy pathNMCTMeta.hpp
More file actions
65 lines (59 loc) · 2.3 KB
/
NMCTMeta.hpp
File metadata and controls
65 lines (59 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//============================================================================
//
// This file is part of GPSTk, the GPS Toolkit.
//
// The GPSTk is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published
// by the Free Software Foundation; either version 3.0 of the License, or
// any later version.
//
// The GPSTk is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with GPSTk; if not, write to the Free Software Foundation,
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
//
// Copyright 2016, The University of Texas at Austin
//
//============================================================================
//============================================================================
//
// This software developed by Applied Research Laboratories at the
// University of Texas at Austin, under contract to an agency or
// agencies within the U.S. Department of Defense. The
// U.S. Government retains all rights to use, duplicate, distribute,
// disclose, or release this software.
//
// Pursuant to DoD Directive 523024
//
// DISTRIBUTION STATEMENT A: This software has been approved for public
// release, distribution is unlimited.
//
//=============================================================================
/**
* @file NMCTMeta.hpp
* Provides class for containing NMCT-related data from subframe 2 (GPS LNAV).
*/
#ifndef NMCTMETA_HPP
#define NMCTMETA_HPP
#include <stdint.h>
#include "CommonTime.hpp"
namespace gpstk
{
/** Encapsulate the time data related to the NMCT (subframe 4 pg 13). */
class NMCTMeta
{
public:
/// Initialize data members.
NMCTMeta();
unsigned short prn; ///< Transmitting satellite of subframe 2.
CommonTime tot; ///< Time of transmission of subframe 2.
uint32_t aodo; ///< Age-of-data offset (in seconds).
CommonTime tnmct; ///< NMCT validity time.
CommonTime toe; ///< Ephemeris validity time.
};
}
#endif // NMCTMETA_HPP