35 #include <Eigen/Eigen>
36 #include <auterion_sdk/system_state/system_state.hpp>
137 const Eigen::Vector3f& target_local_position_m,
138 const std::optional<float> position_error_threshold_m = std::nullopt)
const;
146 const std::optional<float> absolute_velocity_threshold_m_s = std::nullopt)
const;
155 const std::optional<float> absolute_acceleration_threshold_m_s2 = std::nullopt)
const;
164 const float target_heading_enu_rad,
165 const std::optional<float> heading_error_threshold_rad = std::nullopt)
const;
168 std::shared_ptr<SystemState> _system_state;
Class for assessing various properties of LocalPosition objects.
Definition: local_position_assessor.hpp:113
~LocalPositionAssessor()=default
Destructor for LocalPositionAssessor.
LocalPositionAssessor(const SystemState &system_state, const LocalPositionAssessorConfig &config=LocalPositionAssessorConfig{})
Constructor for LocalPositionAssessor.
bool isHeadingWithinThreshold(const float target_heading_enu_rad, const std::optional< float > heading_error_threshold_rad=std::nullopt) const
Check if the current heading is within specified thresholds of the target heading.
bool isPositionWithinThreshold(const Eigen::Vector3f &target_local_position_m, const std::optional< float > position_error_threshold_m=std::nullopt) const
Check if the current position is within specified thresholds of the target location.
bool isAccelerationUnderThreshold(const std::optional< float > absolute_acceleration_threshold_m_s2=std::nullopt) const
Check if the current acceleration is under the specified threshold.
bool isVelocityUnderThreshold(const std::optional< float > absolute_velocity_threshold_m_s=std::nullopt) const
Check if the current velocity is under the specified threshold.
Provides access to the system's state, including flight controller telemetry.
Definition: system_state.hpp:278
Configuration structure for LocalPositionAssessor, defines default acceptance criteria for local posi...
Definition: local_position_assessor.hpp:53
float absolute_acceleration_threshold_m_s2
Definition: local_position_assessor.hpp:56
LocalPositionAssessorConfig & withPositionErrorThreshold(const float position_error_threshold_m)
Set the position error threshold.
Definition: local_position_assessor.hpp:65
LocalPositionAssessorConfig & withVelocityThreshold(const float absolute_velocity_threshold_m_s)
Set the absolute velocity threshold.
Definition: local_position_assessor.hpp:76
float absolute_velocity_threshold_m_s
Definition: local_position_assessor.hpp:55
LocalPositionAssessorConfig & withAccelerationThreshold(const float absolute_acceleration_threshold_m_s2)
Set the absolute acceleration threshold.
Definition: local_position_assessor.hpp:88
LocalPositionAssessorConfig & withHeadingErrorThreshold(const float heading_error_threshold_rad)
Set the heading error threshold.
Definition: local_position_assessor.hpp:99
float heading_error_threshold_rad
Definition: local_position_assessor.hpp:58
float position_error_threshold_m
Definition: local_position_assessor.hpp:54