19#include <unordered_map>
28namespace ubx = NAV::vendor::ublox;
53 [[nodiscard]] std::string
type()
const override;
Navigation message information.
Satellite Navigation data (to calculate SatNavData and clock)
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
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