0.2.0
Loading...
Searching...
No Matches
RtklibPosConverter.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
17
18namespace NAV
19{
22{
23 public:
36
38 [[nodiscard]] static std::string typeStatic();
39
41 [[nodiscard]] std::string type() const override;
42
44 [[nodiscard]] static std::string category();
45
46 private:
47 constexpr static size_t OUTPUT_PORT_INDEX_POSVEL = 0;
48 constexpr static size_t INPUT_PORT_INDEX_RTKLIB_POS = 0;
49
51 bool initialize() override;
52
56 void receiveObs(InputPin::NodeDataQueue& queue, size_t pinIdx);
57};
58
59} // namespace NAV
Node Class.
Abstract parent class for all nodes.
Definition Node.hpp:86
Convert RTKLib pos files into PosVel.
Definition RtklibPosConverter.hpp:22
std::string type() const override
String representation of the Class Type.
RtklibPosConverter(RtklibPosConverter &&)=delete
Move constructor.
RtklibPosConverter & operator=(const RtklibPosConverter &)=delete
Copy assignment operator.
static std::string category()
String representation of the Class Category.
~RtklibPosConverter() override
Destructor.
RtklibPosConverter & operator=(RtklibPosConverter &&)=delete
Move assignment operator.
static std::string typeStatic()
String representation of the Class Type.
RtklibPosConverter(const RtklibPosConverter &)=delete
Copy constructor.
RtklibPosConverter()
Default constructor.