Skip to content

Commit

Permalink
Added .pre-commit-config.yaml and codespell_word, including github ac…
Browse files Browse the repository at this point in the history
…tions CI, fixed spellchecks accordingly

Signed-off-by: Chris Schindlbeck <[email protected]>
  • Loading branch information
cschindlbeck committed Aug 15, 2024
1 parent a308e34 commit 03def5e
Show file tree
Hide file tree
Showing 53 changed files with 246 additions and 202 deletions.
5 changes: 5 additions & 0 deletions .codespell_words
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Configurating
Segway
implementors
retuned
segway
16 changes: 16 additions & 0 deletions .github/workflows/precommit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
name: pre-commit

on:
pull_request:
push:
# branches: [main]
branches: [fix-docs]

jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: pre-commit/[email protected]
23 changes: 23 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# To use:
#
# pre-commit run -a
#
# Or:
#
# pre-commit install # (runs every time you commit in git)
#
# To update this file:
#
# pre-commit autoupdate
#
# See https://github.com/pre-commit/pre-commit
---
repos:
# Spellcheck in comments and docs
# skipping of *.svg files is not working...
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
hooks:
- id: codespell
args: ['--write-changes', '--ignore-words=.codespell_words']
exclude: CHANGELOG\.rst|\.(svg|pyc|drawio|dcf|eds)$
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

**Task description**

`Moveit <https://moveit.ros.org/>`_ has long has a QT `configuration assistant <http://docs.ros.org/kinetic/api/moveit_tutorials/html/doc/setup_assistant/setup_assistant_tutorial.html>`_. This setup assistent helps the user configure their UDRF and needs to setup MoveIt configuration files.
`Moveit <https://moveit.ros.org/>`_ has long has a QT `configuration assistant <http://docs.ros.org/kinetic/api/moveit_tutorials/html/doc/setup_assistant/setup_assistant_tutorial.html>`_. This setup assistant helps the user configure their UDRF and needs to setup MoveIt configuration files.

A configuration assistant could be extremely beneficial to Navigation2 users as a way to minimize friction. We should provide a gui tool to cover the following configurations:

Expand Down
2 changes: 1 addition & 1 deletion 2021summerOfCode/projects/multithreading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Some examples include:
- AMCL particle cloud updates
- Costmap layer updates
- Costmap sensor data population
- Controller critic evalulation
- Controller critic evaluation
- Collision checking
- Voxel grid ray casting
- and more.
Expand Down
2 changes: 1 addition & 1 deletion 2021summerOfCode/projects/semantics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ After creating the generic representation, your project will be to create demons

**Project output requirements**
- Generic semantics standard added to Nav2 documentation
- Generic semantics ROS 2 library that implements the standard and makes it easy for applications to get, retreive, or analyze semantic data for custom purposes
- Generic semantics ROS 2 library that implements the standard and makes it easy for applications to get, retrieve, or analyze semantic data for custom purposes
- A route server to enable navigation-graph and/or route following capabilities
- 1 more demonstration using the semantics library of your choice (could be costmap layer with different rules in different rooms or with different objects, a multi-story building demo using semantic info to allow a robot to plan and execute multi-story trajectories, etc)

Expand Down
2 changes: 1 addition & 1 deletion 2021summerOfCode/projects/spinners.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This project is admittedly abstract to explain to someone unfamiliar with the in

ROS 2 architecturally was changed before Foxy in order to ensure that any single process containing multiple ROS 2 node objects will share the same DDS participant on the network. This is important due to the overhead that each additional DDS participant has on the system.

In order for nav2 to leverage this the best, we need to adjust our usage of ROS 2 nodes and executors to further minimize the number of node objects in existance. In the early days of ROS 2 when Nav2 was being built, we were required to have many nodes in a single server in order to handle action requests and other callbacks. Now, we can make use of multi-threaded spinners, callback groups, and individual executors for specific tasks.
In order for nav2 to leverage this the best, we need to adjust our usage of ROS 2 nodes and executors to further minimize the number of node objects in existence. In the early days of ROS 2 when Nav2 was being built, we were required to have many nodes in a single server in order to handle action requests and other callbacks. Now, we can make use of multi-threaded spinners, callback groups, and individual executors for specific tasks.

This project will involve identifying all of the Node objects in the stack (control+F makes this easy) and work with mentors to ensure by the end of the summer each server contains only a single node. Additionally, the behavior tree plugins should be updated to leverage callback groups to ensure that any single BT node spinning to check if any new messages are on its callback will **only** trigger its own callback by the same mechanisms.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Input Ports
====== =======

Description
Time to envoke behavior for, if exceeds considers it a stuck condition or failure case (seconds).
Time to invoke behavior for, if exceeds considers it a stuck condition or failure case (seconds).

:server_name:

Expand Down
2 changes: 1 addition & 1 deletion configuration/packages/bt-plugins/actions/BackUp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Input Ports
====== =======

Description
Time to envoke behavior for, if exceeds considers it a stuck condition or failure case (seconds).
Time to invoke behavior for, if exceeds considers it a stuck condition or failure case (seconds).

:server_name:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Input Ports
====== =======

Description
Time to envoke behavior for, if exceeds considers it a stuck condition or failure case (seconds).
Time to invoke behavior for, if exceeds considers it a stuck condition or failure case (seconds).

:server_name:

Expand Down
2 changes: 1 addition & 1 deletion configuration/packages/bt-plugins/actions/Spin.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Input Ports
====== =======

Description
Time to envoke behavior for, if exceeds considers it a stuck condition or failure case (seconds).
Time to invoke behavior for, if exceeds considers it a stuck condition or failure case (seconds).

:server_name:

Expand Down
4 changes: 2 additions & 2 deletions configuration/packages/bt-plugins/actions/TruncatePath.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Input Ports
Description
The distance to the original goal for truncating the path.

Ouput Ports
-----------
Output Ports
------------

:output_path:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ Input Ports
Description
Maximum forward integrated distance along the path (starting from the last detected pose) to bound the search for the closest pose to the robot. When set to infinity (default), whole path is searched every time.

Ouput Ports
-----------
Output Ports
------------

:output_path:

Expand Down
2 changes: 1 addition & 1 deletion configuration/packages/bt-plugins/controls/RoundRobin.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
RoundRobin
==========

Custom control flow node used to create a round-robbin behavior for children BT nodes.
Custom control flow node used to create a round-robin behavior for children BT nodes.

Example
-------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Parameters
============== =============================

Description:
Maximum time interval in which source data is considered as valid. If no new data is received within this interval, an additional warning will be displayed. Setting ``source_timeout: 0.0`` disables it. This parameter can be overriden per observation source.
Maximum time interval in which source data is considered as valid. If no new data is received within this interval, an additional warning will be displayed. Setting ``source_timeout: 0.0`` disables it. This parameter can be overridden per observation source.

:base_shift_correction:

Expand Down Expand Up @@ -136,7 +136,7 @@ Polygons parameters
============== =============================

Description:
Polygon vertexes, listed in ``"[[p1.x, p1.y], [p2.x, p2.y], [p3.x, p3.y], ...]"`` format (e.g. ``"[[0.5, 0.25], [0.5, -0.25], [0.0, -0.25], [0.0, 0.25]]"`` for the square in the front). Used for ``polygon`` type. Minimum 3 points for a triangle polygon. If not specified, the collision detector will use dynamic polygon subscription to ``polygon_sub_topic``
Polygon vertices, listed in ``"[[p1.x, p1.y], [p2.x, p2.y], [p3.x, p3.y], ...]"`` format (e.g. ``"[[0.5, 0.25], [0.5, -0.25], [0.0, -0.25], [0.0, 0.25]]"`` for the square in the front). Used for ``polygon`` type. Minimum 3 points for a triangle polygon. If not specified, the collision detector will use dynamic polygon subscription to ``polygon_sub_topic``

:``<polygon_name>``.polygon_sub_topic:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Parameters
============== =============================

Description:
Maximum time interval in which source data is considered as valid. If no new data is received within this interval, the robot will be stopped. Setting ``source_timeout: 0.0`` disables this blocking mechanism. This parameter can be overriden per observation source.
Maximum time interval in which source data is considered as valid. If no new data is received within this interval, the robot will be stopped. Setting ``source_timeout: 0.0`` disables this blocking mechanism. This parameter can be overridden per observation source.

:base_shift_correction:

Expand Down Expand Up @@ -193,7 +193,7 @@ Parameters
============== =======

Description
Adds soft real-time priorization to the controller server to better ensure resources to time sensitive portions of the codebase. This will set the controller's execution thread to a higher priority than the rest of the system (``90``) to meet scheduling deadlines to have less missed loop rates. To use this feature, you use set the following inside of ``/etc/security/limits.conf`` to give userspace access to elevated prioritization permissions: ``<username> soft rtprio 99 <username> hard rtprio 99``
Adds soft real-time prioritization to the controller server to better ensure resources to time sensitive portions of the codebase. This will set the controller's execution thread to a higher priority than the rest of the system (``90``) to meet scheduling deadlines to have less missed loop rates. To use this feature, you use set the following inside of ``/etc/security/limits.conf`` to give userspace access to elevated prioritization permissions: ``<username> soft rtprio 99 <username> hard rtprio 99``

:enable_stamped_cmd_vel:

Expand Down Expand Up @@ -232,7 +232,7 @@ Polygons parameters
============== =============================

Description:
Polygon vertexes, listed in ``"[[p1.x, p1.y], [p2.x, p2.y], [p3.x, p3.y], ...]"`` format (e.g. ``"[[0.5, 0.25], [0.5, -0.25], [0.0, -0.25], [0.0, 0.25]]"`` for the square in the front). Used for ``polygon`` type. Minimum 3 points for a triangle polygon. If not specified, the collision monitor will use dynamic polygon subscription to ``polygon_sub_topic`` for points in the ``stop``/``slowdown``/``limit`` action types, or footprint subscriber to ``footprint_topic`` for ``approach`` action type.
Polygon vertices, listed in ``"[[p1.x, p1.y], [p2.x, p2.y], [p3.x, p3.y], ...]"`` format (e.g. ``"[[0.5, 0.25], [0.5, -0.25], [0.0, -0.25], [0.0, 0.25]]"`` for the square in the front). Used for ``polygon`` type. Minimum 3 points for a triangle polygon. If not specified, the collision monitor will use dynamic polygon subscription to ``polygon_sub_topic`` for points in the ``stop``/``slowdown``/``limit`` action types, or footprint subscriber to ``footprint_topic`` for ``approach`` action type.

:``<polygon_name>``.polygon_sub_topic:

Expand Down Expand Up @@ -424,7 +424,7 @@ All previous Polygon parameters apply, in addition to the following unique param
============== =============================

Description:
Polygon vertexes, listed in ``"[[p1.x, p1.y], [p2.x, p2.y], [p3.x, p3.y], ...]"`` format (e.g. ``"[[0.5, 0.25], [0.5, -0.25], [0.0, -0.25], [0.0, 0.25]]"`` for the square in the front). Used for ``polygon`` type. Minimum 3 points for a triangle polygon. Causes an error, if not specified.
Polygon vertices, listed in ``"[[p1.x, p1.y], [p2.x, p2.y], [p3.x, p3.y], ...]"`` format (e.g. ``"[[0.5, 0.25], [0.5, -0.25], [0.0, -0.25], [0.0, 0.25]]"`` for the square in the front). Used for ``polygon`` type. Minimum 3 points for a triangle polygon. Causes an error, if not specified.

:``<vel_poly>.<subpoly>``.linear_min:

Expand Down
2 changes: 1 addition & 1 deletion configuration/packages/configuring-amcl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Parameters
============== =============================

Description
Percentage of beams after not matching map to force full update due to bad convergance.
Percentage of beams after not matching map to force full update due to bad convergence.

:beam_skip_threshold:

Expand Down
2 changes: 1 addition & 1 deletion configuration/packages/configuring-controller-server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Parameters
============== =======

Description
Adds soft real-time priorization to the controller server to better ensure resources to time sensitive portions of the codebase. This will set the controller's execution thread to a higher priority than the rest of the system (``90``) to meet scheduling deadlines to have less missed loop rates. To use this feature, you use set the following inside of ``/etc/security/limits.conf`` to give userspace access to elevated prioritization permissions: ``<username> soft rtprio 99 <username> hard rtprio 99``
Adds soft real-time prioritization to the controller server to better ensure resources to time sensitive portions of the codebase. This will set the controller's execution thread to a higher priority than the rest of the system (``90``) to meet scheduling deadlines to have less missed loop rates. To use this feature, you use set the following inside of ``/etc/security/limits.conf`` to give userspace access to elevated prioritization permissions: ``<username> soft rtprio 99 <username> hard rtprio 99``

:action_server_result_timeout:

Expand Down
4 changes: 2 additions & 2 deletions configuration/packages/configuring-coverage-server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Parameters
============== ========

Description
The default custom swath order for the route planner in the ``CUSTOM`` mode. The length of this custom order must be ``>= swaths.size()``. Only relevent when using the ``CUSTOM`` Route Type.
The default custom swath order for the route planner in the ``CUSTOM`` mode. The length of this custom order must be ``>= swaths.size()``. Only relevant when using the ``CUSTOM`` Route Type.

:default_spiral_n:

Expand All @@ -191,7 +191,7 @@ Parameters
============== ===============

Description
Default number of swaths to skip and double back on to create a spiral pattern in the route. Only relevent when usign the ``SPIRAL`` Route Type. ``SNAKE`` is a special case when Spiral N = 2.
Default number of swaths to skip and double back on to create a spiral pattern in the route. Only relevant when using the ``SPIRAL`` Route Type. ``SNAKE`` is a special case when Spiral N = 2.


:default_path_continuity_type:
Expand Down
2 changes: 1 addition & 1 deletion configuration/packages/configuring-docking-server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Parameters
============== ==============

Description
Timeout (s) to wait to obtain intial perception of the dock.
Timeout (s) to wait to obtain initial perception of the dock.

:wait_charge_timeout:

Expand Down
2 changes: 1 addition & 1 deletion configuration/packages/configuring-lifecycle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Source code on Github_.
.. _Github: https://github.com/ros-planning/navigation2/tree/main/nav2_lifecycle_manager

The Lifecycle Manager module implements the method for handling the lifecycle transition states for the stack in a deterministic way.
It will take in a set of ordered nodes to transition one-by-one into the configurating and activate states to run the stack.
It will take in a set of ordered nodes to transition one-by-one into the configuration and activate states to run the stack.
It will then bring down the stack into the finalized state in the opposite order.
It will also create bond connections with the servers to ensure they are still up and transition down all nodes if any are non-responsive or crashed.

Expand Down
2 changes: 1 addition & 1 deletion configuration/packages/configuring-map-server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Map Saver Parameters
============== =============================

Description
Occupied space minimum probability threshhold value for occupancy grid.
Occupied space minimum probability threshold value for occupancy grid.

Map Server Parameters
*********************
Expand Down
4 changes: 2 additions & 2 deletions configuration/packages/configuring-mppic.rst
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ MPPI Parameters
============== ===========================

Description
Whether to publish debuggin trajectories for visualization. This can slow down the controller substantially (e.g. 1000 batches of 56 size every 30hz is alot of data).
Whether to publish debugging trajectories for visualization. This can slow down the controller substantially (e.g. 1000 batches of 56 size every 30hz is a lot of data).

:retry_attempt_limit:

Expand Down Expand Up @@ -1131,7 +1131,7 @@ General Words of Wisdom

The ``model_dt`` parameter generally should be set to the duration of your control frequency. So if your control frequency is 20hz, this should be ``0.05``. However, you may also set it lower **but not larger**.

Visualization of the trajectories using ``visualize`` uses compute resources to back out trajectories for visualization and therefore slows compute time. It is not suggested that this parameter is set to ``true`` during a deployed use, but is a useful debug instrument while tuning the system, but use sparingly. Visualizing 2000 batches @ 56 points at 30 hz is *alot*.
Visualization of the trajectories using ``visualize`` uses compute resources to back out trajectories for visualization and therefore slows compute time. It is not suggested that this parameter is set to ``true`` during a deployed use, but is a useful debug instrument while tuning the system, but use sparingly. Visualizing 2000 batches @ 56 points at 30 hz is *a lot*.

The most common parameters you might want to start off changing are the velocity profiles (``vx_max``, ``vx_min``, ``wz_max``, and ``vy_max`` if holonomic) and the ``motion_model`` to correspond to your vehicle. Its wise to consider the ``prune_distance`` of the path plan in proportion to your maximum velocity and prediction horizon. The only deeper parameter that will likely need to be adjusted for your particular settings is the Obstacle critics' ``repulsion_weight`` since the tuning of this is proprtional to your inflation layer's radius. Higher radii should correspond to reduced ``repulsion_weight`` due to the penalty formation (e.g. ``inflation_radius - min_dist_to_obstacle``). If this penalty is too high, the robot will slow significantly when entering cost-space from non-cost space or jitter in narrow corridors. It is noteworthy, but likely not necessary to be changed, that the Obstacle critic may use the full footprint information if ``consider_footprint = true``, though comes at an increased compute cost.

Expand Down
2 changes: 1 addition & 1 deletion configuration/packages/configuring-velocity-smoother.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Velocity Smoother Parameters
============== =======

Description
Adds soft real-time priorization to the controller server to better ensure resources to time sensitive portions of the codebase. This will set the controller's execution thread to a higher priority than the rest of the system (``90``) to meet scheduling deadlines to have less missed loop rates. To use this feature, you use set the following inside of ``/etc/security/limits.conf`` to give userspace access to elevated prioritization permissions: ``<username> soft rtprio 99 <username> hard rtprio 99``
Adds soft real-time prioritization to the controller server to better ensure resources to time sensitive portions of the codebase. This will set the controller's execution thread to a higher priority than the rest of the system (``90``) to meet scheduling deadlines to have less missed loop rates. To use this feature, you use set the following inside of ``/etc/security/limits.conf`` to give userspace access to elevated prioritization permissions: ``<username> soft rtprio 99 <username> hard rtprio 99``

:smoothing_frequency:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Parameters
============== =============================

Description
Camera image topic name to susbcribe
Camera image topic name to subscribe

:``<nav2_waypoint_follower plugin>``.save_images_dir:

Expand Down
Loading

0 comments on commit 03def5e

Please sign in to comment.