18#include <fmt/format.h>
37using StateKeyType = std::variant<Keys::MotionModelKey, Keys::RecvClkBias, Keys::RecvClkDrift, Keys::InterFreqBias>;
98struct hash<NAV::SPP::Meas::Psr>
104 return std::hash<NAV::SatSigId>()(psr.
satSigId);
109struct hash<NAV::SPP::Meas::Doppler>
115 return std::hash<NAV::SatSigId>()(doppler.
satSigId) << 12;
120#ifndef DOXYGEN_IGNORE
124struct fmt::formatter<NAV::SPP::Meas::Psr> : fmt::formatter<std::string>
130 template<
typename FormatContext>
133 return fmt::formatter<std::string>::format(fmt::format(
"psr({})", psr.
satSigId), ctx);
139struct fmt::formatter<NAV::SPP::Meas::Doppler> : fmt::formatter<std::string>
145 template<
typename FormatContext>
148 return fmt::formatter<std::string>::format(fmt::format(
"dop({})", doppler.
satSigId), ctx);
154struct fmt::formatter<NAV::SPP::States::StateKeyType> : fmt::formatter<std::string>
160 template<
typename FormatContext>
163 using namespace NAV::Keys;
165 if (
const auto* s = std::get_if<MotionModelKey>(&state))
170 return fmt::formatter<std::string>::format(
"PosX", ctx);
172 return fmt::formatter<std::string>::format(
"PosY", ctx);
174 return fmt::formatter<std::string>::format(
"PosZ", ctx);
176 return fmt::formatter<std::string>::format(
"VelX", ctx);
178 return fmt::formatter<std::string>::format(
"VelY", ctx);
180 return fmt::formatter<std::string>::format(
"VelZ", ctx);
182 return fmt::formatter<std::string>::format(
"MotionModelKey_COUNT", ctx);
185 if (
const auto* recvClkErr = std::get_if<RecvClkBias>(&state))
187 return fmt::formatter<std::string>::format(fmt::format(
"RecvClkBias({})", recvClkErr->satSys), ctx);
189 if (
const auto* recvClkDrift = std::get_if<RecvClkDrift>(&state))
191 return fmt::formatter<std::string>::format(fmt::format(
"RecvClkDrift({})", recvClkDrift->satSys), ctx);
193 if (
const auto* interFreqBias = std::get_if<NAV::Keys::InterFreqBias>(&state))
195 return fmt::formatter<std::string>::format(fmt::format(
"InterFreqBias({})", interFreqBias->freq), ctx);
198 return fmt::formatter<std::string>::format(
"ERROR", ctx);
210 template<
typename FormatContext>
213 if (
const auto* psr = std::get_if<NAV::SPP::Meas::Psr>(&meas))
215 return fmt::formatter<std::string>::format(fmt::format(
"psr({})", psr->satSigId), ctx);
217 if (
const auto* doppler = std::get_if<NAV::SPP::Meas::Doppler>(&meas))
219 return fmt::formatter<std::string>::format(fmt::format(
"doppler({})", doppler->satSigId), ctx);
222 return fmt::formatter<std::string>::format(
"ERROR", ctx);
Inter Frequency Bias System Model.
std::variant< Keys::MotionModelKey, Keys::RecvClkBias, Keys::RecvClkDrift, Keys::InterFreqBias > StateKeyType
Alias for the state key type.
Definition Keys.hpp:37
std::ostream & operator<<(std::ostream &os, const NAV::SPP::Meas::Psr &obj)
Stream insertion operator overload.
constexpr size_t POS_VEL_STATE_COUNT
Amount of states.
Definition Keys.hpp:34
constexpr size_t VEL_STATE_COUNT
Amount of states to estimate for the velocity.
Definition Keys.hpp:32
constexpr size_t POS_STATE_COUNT
Amount of states to estimate for the position.
Definition Keys.hpp:31
std::variant< Psr, Doppler > MeasKeyTypes
Alias for the measurement key type.
Definition Keys.hpp:64
@ PosY
Position ECEF_Y [m].
Definition MotionModel.hpp:42
@ VelZ
Velocity ECEF_Z [m/s].
Definition MotionModel.hpp:46
@ VelY
Velocity ECEF_Y [m/s].
Definition MotionModel.hpp:45
@ VelX
Velocity ECEF_X [m/s].
Definition MotionModel.hpp:44
@ PosX
Position ECEF_X [m].
Definition MotionModel.hpp:41
@ PosZ
Position ECEF_Z [m].
Definition MotionModel.hpp:43
@ MotionModelKey_COUNT
Count.
Definition MotionModel.hpp:47
Receiver Clock System Model.
Structs identifying a unique satellite.
Range-rate (doppler) measurement [m/s].
Definition Keys.hpp:55
SatSigId satSigId
Satellite Signal Id.
Definition Keys.hpp:60
bool operator==(const Doppler &rhs) const
Equal comparison operator.
Definition Keys.hpp:58
Pseudorange measurement [m].
Definition Keys.hpp:46
bool operator==(const Psr &rhs) const
Equal comparison operator.
Definition Keys.hpp:49
SatSigId satSigId
Satellite Signal Id.
Definition Keys.hpp:51
Identifies a satellite signal (satellite frequency and number)
Definition SatelliteIdentifier.hpp:67
size_t operator()(const NAV::SPP::Meas::Doppler &doppler) const
Hash function.
Definition Keys.hpp:113
size_t operator()(const NAV::SPP::Meas::Psr &psr) const
Hash function.
Definition Keys.hpp:102