Skip to content

Commit c7fb228

Browse files
authored
fix: update section references to use consistent formatting (#1169)
1 parent 2b70809 commit c7fb228

File tree

9 files changed

+48
-16
lines changed

9 files changed

+48
-16
lines changed

docs/modules/1_introduction/3_technologies_for_robotics/technologies_for_robotics_main.rst

+40-8
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,54 @@ The field of robotics needs wide areas of technologies such as mechanical engine
55
electrical engineering, computer science, and artificial intelligence (AI).
66
This project, `PythonRobotics`, only focus on computer science and artificial intelligence.
77

8+
The technologies for robotics are categorized as following 3 categories:
89

10+
#. `Autonomous Navigation`_
11+
#. `Manipulation`_
12+
#. `Robot type specific technologies`_
13+
14+
.. _`Autonomous Navigation`:
915

1016
Autonomous Navigation
1117
^^^^^^^^^^^^^^^^^^^^^^^^
12-
13-
In recent years, autonomous navigation technologies have received huge
14-
attention in many fields.
15-
Such fields include, autonomous driving[22], drone flight navigation,
16-
and other transportation systems.
17-
18-
An autonomous navigation system is a system that can move to a goal over long
18+
Autonomous navigation is a capability that can move to a goal over long
1919
periods of time without any external control by an operator.
20-
The system requires a wide range of technologies:
20+
21+
To achieve autonomous navigation, the robot needs to have the following technologies:
2122
- It needs to know where it is (localization)
2223
- Where it is safe (mapping)
24+
- Where is is safe and where the robot is in the map (Simultaneous Localization and Mapping (SLAM))
2325
- Where and how to move (path planning)
2426
- How to control its motion (path following).
2527

2628
The autonomous system would not work correctly if any of these technologies is missing.
29+
30+
In recent years, autonomous navigation technologies have received huge
31+
attention in many fields.
32+
For example, self-driving cars, drones, and autonomous mobile robots in indoor and outdoor environments.
33+
34+
In this project, we provide many algorithms, sample codes,
35+
and documentations for autonomous navigation.
36+
37+
#. :ref:`Localization`
38+
#. :ref:`Mapping`
39+
#. :ref:`SLAM`
40+
#. :ref:`Path planning`
41+
#. :ref:`Path tracking`
42+
43+
44+
45+
.. _`Manipulation`:
46+
47+
Manipulation
48+
^^^^^^^^^^^^^^^^^^^^^^^^
49+
50+
#. :ref:`Arm Navigation`
51+
52+
.. _`Robot type specific technologies`:
53+
54+
Robot type specific technologies
55+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
56+
57+
#. :ref:`Aerial Navigation`
58+
#. :ref:`Bipedal`

docs/modules/2_localization/localization_main.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _localization:
1+
.. _`Localization`:
22

33
Localization
44
============

docs/modules/3_mapping/mapping_main.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _mapping:
1+
.. _`Mapping`:
22

33
Mapping
44
=======

docs/modules/4_slam/slam_main.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _slam:
1+
.. _`SLAM`:
22

33
SLAM
44
====

docs/modules/5_path_planning/path_planning_main.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _path_planning:
1+
.. _`Path Planning`:
22

33
Path Planning
44
=============

docs/modules/6_path_tracking/path_tracking_main.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _path_tracking:
1+
.. _`Path Tracking`:
22

33
Path Tracking
44
=============

docs/modules/7_arm_navigation/arm_navigation_main.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _arm_navigation:
1+
.. _`Arm Navigation`:
22

33
Arm Navigation
44
==============

docs/modules/8_aerial_navigation/aerial_navigation_main.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _aerial_navigation:
1+
.. _`Aerial Navigation`:
22

33
Aerial Navigation
44
=================

docs/modules/9_bipedal/bipedal_main.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _bipedal:
1+
.. _`Bipedal`:
22

33
Bipedal
44
=================

0 commit comments

Comments
 (0)