Carma-platform v4.2.0
CARMA Platform is built on robot operating system (ROS) and utilizes open source software (OSS) that enables Cooperative Driving Automation (CDA) features to allow Automated Driving Systems to interact and cooperate with infrastructure and other vehicles through communication.
|
Classes | |
class | LocalizationManager |
Primary logic class for the localization manager node. More... | |
struct | LocalizationManagerConfig |
Struct to store the configuration settings for the LocalizationManager class. More... | |
class | LocalizationTransitionTable |
Class defining the state transition table behavior for the LocalizationManager. More... | |
class | Node |
Core execution node for this package. More... | |
Enumerations | |
enum | LocalizerMode { NDT = 0 , GNSS = 1 , AUTO_WITH_TIMEOUT = 2 , AUTO_WITHOUT_TIMEOUT = 3 , GNSS_WITH_NDT_INIT = 4 , GNSS_WITH_FIXED_OFFSET = 5 } |
Enum describing the possible operational modes of the LocalizationManager. More... | |
enum class | LocalizationState { UNINITIALIZED , INITIALIZING , OPERATIONAL , DEGRADED , DEGRADED_NO_LIDAR_FIX , AWAIT_MANUAL_INITIALIZATION } |
Enum describing the possible states of the localization system. More... | |
enum class | LocalizationSignal { INITIAL_POSE , GOOD_NDT_FREQ_AND_FITNESS_SCORE , POOR_NDT_FREQ_OR_FITNESS_SCORE , UNUSABLE_NDT_FREQ_OR_FITNESS_SCORE , TIMEOUT , LIDAR_SENSOR_FAILURE , LIDAR_INITIALIZED_SWITCH_TO_GPS , GNSS_DATA_TIMEOUT } |
Enum describing the possible signals to change the current LocalizationState. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &os, LocalizerMode m) |
Stream operator for LocalizerMode enum. More... | |
std::ostream & | operator<< (std::ostream &os, LocalizationState s) |
Stream operator for LocalizationState enum. More... | |
carma_localization_msgs::msg::LocalizationStatusReport | stateToMsg (LocalizationState state, const rclcpp::Time &stamp) |
Helper function to convert LocalizationState objects into LocalizationStatusReport ROS messages. More... | |
std::ostream & | operator<< (std::ostream &os, LocalizationSignal s) |
Stream operator for LocalizationSignal enum. More... | |
def | generate_launch_description () |
|
strong |
Enum describing the possible signals to change the current LocalizationState.
Enumerator | |
---|---|
INITIAL_POSE | |
GOOD_NDT_FREQ_AND_FITNESS_SCORE | |
POOR_NDT_FREQ_OR_FITNESS_SCORE | |
UNUSABLE_NDT_FREQ_OR_FITNESS_SCORE | |
TIMEOUT | |
LIDAR_SENSOR_FAILURE | |
LIDAR_INITIALIZED_SWITCH_TO_GPS | |
GNSS_DATA_TIMEOUT |
Definition at line 67 of file LocalizationTypes.hpp.
|
strong |
Enum describing the possible states of the localization system.
Enumerator | |
---|---|
UNINITIALIZED | |
INITIALIZING | |
OPERATIONAL | |
DEGRADED | |
DEGRADED_NO_LIDAR_FIX | |
AWAIT_MANUAL_INITIALIZATION |
Definition at line 41 of file LocalizationTypes.hpp.
Enum describing the possible operational modes of the LocalizationManager.
Enumerator | |
---|---|
NDT | |
GNSS | |
AUTO_WITH_TIMEOUT | |
AUTO_WITHOUT_TIMEOUT | |
GNSS_WITH_NDT_INIT | |
GNSS_WITH_FIXED_OFFSET |
Definition at line 25 of file LocalizationTypes.hpp.
def localization_manager.generate_launch_description | ( | ) |
Definition at line 31 of file localization_manager.py.
std::ostream & localization_manager::operator<< | ( | std::ostream & | os, |
LocalizationSignal | s | ||
) |
Stream operator for LocalizationSignal enum.
Definition at line 51 of file LocalizationTypes.cpp.
References GNSS_DATA_TIMEOUT, GOOD_NDT_FREQ_AND_FITNESS_SCORE, INITIAL_POSE, LIDAR_INITIALIZED_SWITCH_TO_GPS, LIDAR_SENSOR_FAILURE, POOR_NDT_FREQ_OR_FITNESS_SCORE, TIMEOUT, and UNUSABLE_NDT_FREQ_OR_FITNESS_SCORE.
std::ostream & localization_manager::operator<< | ( | std::ostream & | os, |
LocalizationState | s | ||
) |
Stream operator for LocalizationState enum.
Definition at line 36 of file LocalizationTypes.cpp.
References AWAIT_MANUAL_INITIALIZATION, DEGRADED, DEGRADED_NO_LIDAR_FIX, INITIALIZING, OPERATIONAL, and UNINITIALIZED.
std::ostream & localization_manager::operator<< | ( | std::ostream & | os, |
LocalizerMode | m | ||
) |
Stream operator for LocalizerMode enum.
Definition at line 21 of file LocalizationTypes.cpp.
References AUTO_WITH_TIMEOUT, AUTO_WITHOUT_TIMEOUT, GNSS, GNSS_WITH_FIXED_OFFSET, GNSS_WITH_NDT_INIT, and NDT.
carma_localization_msgs::msg::LocalizationStatusReport localization_manager::stateToMsg | ( | LocalizationState | state, |
const rclcpp::Time & | stamp | ||
) |
Helper function to convert LocalizationState objects into LocalizationStatusReport ROS messages.
state | The state to convert |
stamp | The timestamp to set for the message header |
Definition at line 68 of file LocalizationTypes.cpp.
References AWAIT_MANUAL_INITIALIZATION, DEGRADED, DEGRADED_NO_LIDAR_FIX, INITIALIZING, OPERATIONAL, and UNINITIALIZED.
Referenced by localization_manager::LocalizationManager::posePubTick().