0.2.0
Loading...
Searching...
No Matches
UbloxGnssObsConverter.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 <unordered_set>
17
20
21namespace NAV
22{
25{
26 public:
39
41 [[nodiscard]] static std::string typeStatic();
42
44 [[nodiscard]] std::string type() const override;
45
47 [[nodiscard]] static std::string category();
48
49 private:
50 constexpr static size_t OUTPUT_PORT_INDEX_GNSS_OBS = 0;
51
53 std::unordered_set<SatSigId> _lastEpochObs;
54
56 bool initialize() override;
57
61 void receiveObs(InputPin::NodeDataQueue& queue, size_t pinIdx);
62};
63
64} // namespace NAV
Node Class.
Structs identifying a unique satellite.
Abstract parent class for all nodes.
Definition Node.hpp:86
Convert UbloxObs into GnssObs.
Definition UbloxGnssObsConverter.hpp:25
UbloxGnssObsConverter(const UbloxGnssObsConverter &)=delete
Copy constructor.
UbloxGnssObsConverter & operator=(const UbloxGnssObsConverter &)=delete
Copy assignment operator.
static std::string category()
String representation of the Class Category.
UbloxGnssObsConverter & operator=(UbloxGnssObsConverter &&)=delete
Move assignment operator.
~UbloxGnssObsConverter() override
Destructor.
UbloxGnssObsConverter()
Default constructor.
static std::string typeStatic()
String representation of the Class Type.
std::string type() const override
String representation of the Class Type.
UbloxGnssObsConverter(UbloxGnssObsConverter &&)=delete
Move constructor.