0.3.0
Loading...
Searching...
No Matches
UbloxGnssOrbitCollector.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
13
14#pragma once
15
16#include <mutex>
17#include <bitset>
18#include <memory>
19#include <unordered_map>
20#include <set>
21
25
27
28namespace ubx = NAV::vendor::ublox;
29
30namespace NAV
31{
34{
35 public:
48
50 [[nodiscard]] static std::string typeStatic();
51
53 [[nodiscard]] std::string type() const override;
54
56 [[nodiscard]] static std::string category();
57
58 private:
59 constexpr static size_t INPUT_PORT_INDEX_UBLOX_OBS = 0;
60 constexpr static size_t OUTPUT_PORT_INDEX_GNSS_NAV_INFO = 0;
61
63 bool initialize() override;
64
68 void onDeleteLink(OutputPin& startPin, InputPin& endPin) override;
69
72
74 std::optional<std::unique_lock<std::mutex>> _postProcessingLock;
75
78 {
82 EphemerisBuilder(const SatId& satId, std::shared_ptr<SatNavData> navData)
83 : satId(satId), navData(std::move(navData))
84 {
85 subframes.reset();
86 }
87
89 std::shared_ptr<SatNavData> navData;
90 std::bitset<5> subframes;
91 };
92
94 std::vector<EphemerisBuilder> _ephemerisBuilder;
95
97 std::unordered_map<SatId, size_t> _lastAccessedBuilder;
98
100 std::set<SatelliteSystem> _warningsNotImplemented;
101
107 EphemerisBuilder& getEphemerisBuilder(const SatId& satId, const InsTime& insTime, size_t IOD = 0);
108
113 std::optional<std::reference_wrapper<EphemerisBuilder>> getEphemerisBuilder(const SatId& satId, size_t IOD);
114
118 std::optional<std::reference_wrapper<EphemerisBuilder>> getLastEphemerisBuilder(const SatId& satId);
119
123 void receiveObs(InputPin::NodeDataQueue& queue, size_t pinIdx);
124
129 void decryptGPS(const SatId& satId, const ubx::UbxRxmSfrbx& sfrbx, const InsTime& insTime);
130
135 void decryptGalileo(const SatId& satId, const ubx::UbxRxmSfrbx& sfrbx, const InsTime& insTime);
136
141 void decryptGLONASS(const SatId& satId, const ubx::UbxRxmSfrbx& sfrbx, const InsTime& insTime);
142
147 void decryptBeiDou(const SatId& satId, const ubx::UbxRxmSfrbx& sfrbx, const InsTime& insTime);
148
153 void decryptQZSS(const SatId& satId, const ubx::UbxRxmSfrbx& sfrbx, const InsTime& insTime);
154
159 void decryptIRNSS(const SatId& satId, const ubx::UbxRxmSfrbx& sfrbx, const InsTime& insTime);
160
165 void decryptSBAS(const SatId& satId, const ubx::UbxRxmSfrbx& sfrbx, const InsTime& insTime);
166};
167
168} // namespace NAV
Navigation message information.
Node Class.
Satellite Navigation data (to calculate SatNavData and clock)
ublox Observation Class
void move(std::vector< T > &v, size_t sourceIdx, size_t targetIdx)
Moves an element within a vector to a new position.
Definition Vector.hpp:26
GNSS Navigation message information.
Definition GnssNavInfo.hpp:30
Input pins of nodes.
Definition Pin.hpp:491
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
Abstract parent class for all nodes.
Definition Node.hpp:86
Output pins of nodes.
Definition Pin.hpp:338
Collects UBX-RXM-SFRBX messages and provides the Orbit information.
Definition UbloxGnssOrbitCollector.hpp:34
std::vector< EphemerisBuilder > _ephemerisBuilder
Map of ephemeris build helper for each satellite.
Definition UbloxGnssOrbitCollector.hpp:94
GnssNavInfo _gnssNavInfo
Data object to share over the output pin.
Definition UbloxGnssOrbitCollector.hpp:71
UbloxGnssOrbitCollector & operator=(const UbloxGnssOrbitCollector &)=delete
Copy assignment operator.
void receiveObs(InputPin::NodeDataQueue &queue, size_t pinIdx)
Data receive function.
void decryptGPS(const SatId &satId, const ubx::UbxRxmSfrbx &sfrbx, const InsTime &insTime)
Decrypt the GPS SFRBX message.
void decryptSBAS(const SatId &satId, const ubx::UbxRxmSfrbx &sfrbx, const InsTime &insTime)
Decrypt the SBAS SFRBX message.
void decryptGalileo(const SatId &satId, const ubx::UbxRxmSfrbx &sfrbx, const InsTime &insTime)
Decrypt the Galileo SFRBX message.
bool initialize() override
Initialize the node.
UbloxGnssOrbitCollector(UbloxGnssOrbitCollector &&)=delete
Move constructor.
void decryptGLONASS(const SatId &satId, const ubx::UbxRxmSfrbx &sfrbx, const InsTime &insTime)
Decrypt the GLONASS SFRBX message.
std::optional< std::reference_wrapper< EphemerisBuilder > > getEphemerisBuilder(const SatId &satId, size_t IOD)
Searches the ephemeris builder for the given Issue of Data Ephemeris.
static constexpr size_t INPUT_PORT_INDEX_UBLOX_OBS
Flow (UbloxObs)
Definition UbloxGnssOrbitCollector.hpp:59
void decryptQZSS(const SatId &satId, const ubx::UbxRxmSfrbx &sfrbx, const InsTime &insTime)
Decrypt the QZSS SFRBX message.
EphemerisBuilder & getEphemerisBuilder(const SatId &satId, const InsTime &insTime, size_t IOD=0)
Searches the ephemeris builder for the given satellite and time. If nothing found returns a new insta...
void decryptIRNSS(const SatId &satId, const ubx::UbxRxmSfrbx &sfrbx, const InsTime &insTime)
Decrypt the IRNSS SFRBX message.
std::set< SatelliteSystem > _warningsNotImplemented
List of satellite systems to emit warnings because conversion is not implemented yet.
Definition UbloxGnssOrbitCollector.hpp:100
static constexpr size_t OUTPUT_PORT_INDEX_GNSS_NAV_INFO
Object.
Definition UbloxGnssOrbitCollector.hpp:60
std::optional< std::reference_wrapper< EphemerisBuilder > > getLastEphemerisBuilder(const SatId &satId)
Searches the most recent ephemeris builder for the given satellite.
UbloxGnssOrbitCollector()
Default constructor.
std::unordered_map< SatId, size_t > _lastAccessedBuilder
List of IOD for each satellite.
Definition UbloxGnssOrbitCollector.hpp:97
static std::string typeStatic()
String representation of the Class Type.
UbloxGnssOrbitCollector & operator=(UbloxGnssOrbitCollector &&)=delete
Move assignment operator.
static std::string category()
String representation of the Class Category.
void onDeleteLink(OutputPin &startPin, InputPin &endPin) override
Called when a link is to be deleted.
~UbloxGnssOrbitCollector() override
Destructor.
std::string type() const override
String representation of the Class Type.
void decryptBeiDou(const SatId &satId, const ubx::UbxRxmSfrbx &sfrbx, const InsTime &insTime)
Decrypt the BeiDou SFRBX message.
std::optional< std::unique_lock< std::mutex > > _postProcessingLock
Mutex to lock if the connected ublox obs provider is a file reader.
Definition UbloxGnssOrbitCollector.hpp:74
UbloxGnssOrbitCollector(const UbloxGnssOrbitCollector &)=delete
Copy constructor.
Identifies a satellite (satellite system and number)
Definition SatelliteIdentifier.hpp:34
Ephemeris builder to store unfinished ephemeris data till all subframes are collected.
Definition UbloxGnssOrbitCollector.hpp:78
std::shared_ptr< SatNavData > navData
Navigation data pointer.
Definition UbloxGnssOrbitCollector.hpp:89
std::bitset< 5 > subframes
Flags for which subframes were received already. e.g. Subframes 1, 2, 3 for GPS.
Definition UbloxGnssOrbitCollector.hpp:90
EphemerisBuilder(const SatId &satId, std::shared_ptr< SatNavData > navData)
Constructor.
Definition UbloxGnssOrbitCollector.hpp:82
SatId satId
Satellite Identifier.
Definition UbloxGnssOrbitCollector.hpp:88
Broadcast Navigation Data Subframe.
Definition UbloxTypes.hpp:707