![]() |
Autonomy Software C++ 24.5.1
Welcome to the Autonomy Software repository of the Mars Rover Design Team (MRDT) at Missouri University of Science and Technology (Missouri S&T)! API reference contains the source code and other resources for the development of the autonomy software for our Mars rover. The Autonomy Software project aims to compete in the University Rover Challenge (URC) by demonstrating advanced autonomous capabilities and robust navigation algorithms.
|
Defines and implements namespaces and functions for algorithms that pertain to search pattern. More...
#include "../util/GeospatialOperations.hpp"
Go to the source code of this file.
Namespaces | |
namespace | searchpattern |
Namespace containing algorithms related to calculating drive powers, odometry, trajectories, kinematics, etc of search pattern. | |
Functions | |
std::vector< geoops::Waypoint > | searchpattern::CalculateSpiralPatternWaypoints (const geoops::UTMCoordinate &stStartingPoint, const double dAngularStepDegrees=57, const double dMaxRadius=25, const double dStartingHeadingDegrees=0, const double dStartSpacing=1) |
Perform a spiral search pattern starting from a given point. | |
std::vector< geoops::Waypoint > | searchpattern::CalculateSpiralPatternWaypoints (const geoops::GPSCoordinate &stStartingPoint, const double dAngularStepDegrees=57, const double dMaxRadius=25, const double dStartingHeadingDegrees=0, const double dStartSpacing=1) |
Perform a spiral search pattern starting from a given point. | |
std::vector< geoops::Waypoint > | searchpattern::CalculateZigZagPatternWaypoints (const geoops::UTMCoordinate &stCenterPoint, const double dWidth=20.0, const double dHeight=20.0, const double dSpacing=1.0, const bool bVertical=true) |
Calculate waypoints for a zigzag pattern. This function generates waypoints for a zigzag pattern starting from a given point with configurable width, height, and spacing. The direction of the zigzag pattern (vertical or horizontal) can be specified. | |
std::vector< geoops::Waypoint > | searchpattern::CalculateZigZagPatternWaypoints (const geoops::GPSCoordinate &stCenterPoint, const double dWidth=20.0, const double dHeight=20.0, const double dSpacing=1.0, const bool bVertical=true) |
Calculate waypoints for a zigzag pattern. This function generates waypoints for a zigzag pattern starting from a given point with configurable width, height, and spacing. The direction of the zigzag pattern (vertical or horizontal) can be specified. | |
Defines and implements namespaces and functions for algorithms that pertain to search pattern.