Skip to content

Commit b10a4fe

Browse files
style(pre-commit): autofix
1 parent 01f442b commit b10a4fe

File tree

10 files changed

+0
-32
lines changed

10 files changed

+0
-32
lines changed

docs/contributing/coding-guidelines/ros-nodes/topic-message-handling/supp-intra-process-comm.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,21 +48,17 @@ Here is a snippet of [_ros2_subscription_examples/intra_process_talker_listener/
4848
Below is a line-by-line explanation of the above code.
4949
5050
- `if (this->get_node_options().use_intra_process_comms()){`
51-
5251
- The statement checks whether or not intra-process communication is enabled or not by using `NodeOptions`
5352
5453
- `auto intra_process_sub = sub_->get_intra_process_waitable();`
55-
5654
- The statement means to get an embodied object which performs intra-process communication
5755
5856
- `if (intra_process_sub->is_ready(nullptr) == true) {`
59-
6057
- The statement checks if a message has already been received through intra-process communication
6158
- The argument of `is_ready()` is of type `rcl_wait_set_t` type, but because the argument is not used within `is_ready()`, `nullptr` is used for the moment.
6259
- Using `nullptr` is currently a workaround, as it has no intent.
6360
6461
- `std::shared_ptr<void> data = intra_process_sub->take_data();`
65-
6662
- This statement means to obtain a topic message from subscriptions for intra-process communication.
6763
- `intra_process_sub->take_data()` does not return a boolean value indicating whether a message is received successfully or not, so it is necessary to check this by calling `is_ready()` beforehand
6864

docs/datasets/index.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,10 @@ The data contains data from the following sensors:
3232

3333
- You can find the produced full point cloud map, corner feature point cloud map and
3434
surface feature point cloud map here:
35-
3635
- [https://drive.google.com/drive/folders/1_jiQod4lO6-V2NDEr3d-M3XF_Nqmc0Xf?usp=drive_link](https://drive.google.com/drive/folders/1_jiQod4lO6-V2NDEr3d-M3XF_Nqmc0Xf?usp=drive_link)
3736
- Exported point clouds are exported via downsampling with 0.2 meters and 0.5 meters voxel grids.
3837

3938
- You can find the ROS 2 bag which is collected simultaneously with the mapping data:
40-
4139
- [https://drive.google.com/drive/folders/17zXiBeYlM90gQ5hV6EAWaoBTnNFoVPML?usp=drive_link](https://drive.google.com/drive/folders/17zXiBeYlM90gQ5hV6EAWaoBTnNFoVPML?usp=drive_link)
4240
- Due to the simultaneous data collection, we can assume that the point cloud maps and GNSS/INS
4341
data are the ground truth data for this rosbag.
@@ -79,29 +77,24 @@ Used drivers for sensors give output in default ROS 2 message types and their ow
7977
types for additional information. Following topics are the default ROS 2 message types:
8078

8179
- `/applanix/lvx_client/imu_raw`
82-
8380
- Gives the output of INS system in ENU. Due to the 9-axis IMU, `yaw` value demonstrates the
8481
heading value of the sensor.
8582

8683
- `/applanix/lvx_client/twist_with_covariance`
87-
8884
- Gives the twist output of the sensor.
8985

9086
- `/applanix/lvx_client/odom`
91-
9287
- Gives the position and orientation of the sensor from the starting point of the ROS 2 driver.
9388
Implemented with `GeographicLib::LocalCartesian`.
9489

9590
**This topic is not related to the wheel odometry.**
9691

9792
- `/applanix/lvx_client/gnss/fix`
98-
9993
- Gives the latitude, longitude and height values of the sensors.
10094

10195
**Ellipsoidal height of WGS84 ellipsoid is given as height value.**
10296

10397
- `/pandar_points`
104-
10598
- Gives the point cloud from the LiDAR sensor.
10699

107100
## Bus-ODD (Operational Design Domain) datasets

docs/design/autoware-architecture/vehicle/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ Each component contains static nodes of Autoware, while each module can be dynam
3535
The Vehicle Interface component can provide the following features in functionality and capability:
3636

3737
- Basic functions
38-
3938
- Converting Autoware control commands to vehicle specific command
4039
- Converting vehicle specific status information (velocity, steering) to Autoware status message
4140

docs/how-to-guides/integrating-autoware/creating-maps/open-source-slam/fast-lio-slam/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ sudo make install
8080
## Other Examples
8181

8282
- [Tutorial video 1](https://youtu.be/nu8j4yaBMnw) (using KAIST 03 sequence of [MulRan dataset](https://sites.google.com/view/mulran-pr/dataset))
83-
8483
- Example result captures
8584
<p><img src="images/kaist03.png" width=712pix></p>
8685
- [download the KAIST 03 pcd map](https://www.dropbox.com/s/w599ozdg7h6215q/KAIST03.pcd?dl=0) made by FAST-LIO-SLAM, 500MB

docs/how-to-guides/integrating-autoware/creating-maps/open-source-slam/ia-lio-slam/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
### Dependencies
2424

2525
- [ROS](http://wiki.ros.org/ROS/Installation) (tested with Kinetic and Melodic)
26-
2726
- `for ROS melodic:`
2827

2928
```bash

docs/how-to-guides/integrating-autoware/creating-vehicle-interface-package/vehicle-interface.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ The purpose of the vehicle interface package is to convert the control messages
66
So, we can say that the purposes of the vehicle_interface are:
77

88
1. Converting Autoware control commands to a vehicle-specific format. Example control commands of autoware:
9-
109
- lateral controls: steering tire angle, steering tire rotation rate
1110
- longitudinal controls: speed, acceleration, jerk
1211

docs/how-to-guides/others/add-a-custom-ros-message.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@
55
During the Autoware development, you will probably need to define your own messages. Read the following instructions before adding a custom message.
66

77
1. Message in [autoware_msgs](https://github.com/autowarefoundation/autoware_msgs) define interfaces of `Autoware Core`.
8-
98
- If a contributor wishes to make changes or add new messages to `autoware_msgs`, they should first create a new discussion post under the [Design category](https://github.com/orgs/autowarefoundation/discussions/categories/design).
109

1110
2. Any other minor or proposal messages used for internal communication within a component(such as planning) should be defined in another repository.
12-
1311
- [tier4_autoware_msgs](https://github.com/tier4/tier4_autoware_msgs) is an example of that.
1412

1513
The following is a simple tutorial of adding a message package to `autoware_msgs`. For the general ROS 2 tutorial, see [Create custom msg and srv files](http://docs.ros.org/en/galactic/Tutorials/Beginner-Client-Libraries/Custom-ROS2-Interfaces.html).

docs/installation/autoware/source-installation.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@
33
## Prerequisites
44

55
- OS
6-
76
- [Ubuntu 22.04](https://releases.ubuntu.com/22.04/)
87

98
- ROS
10-
119
- ROS 2 Humble
1210

1311
For ROS 2 system dependencies, refer to [REP-2000](https://www.ros.org/reps/rep-2000.html).
@@ -154,7 +152,6 @@ sudo apt-get -y install git
154152
```
155153
156154
For Git users:
157-
158155
- `vcs import` is similar to `git checkout`.
159156
- Note that it doesn't pull from the remote.
160157
- `vcs pull` is similar to `git pull`.

docs/reference-hw/index.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,12 @@ The listed sensors and systems are not sold, developed or given direct technical
99
The documents consists of the sections listed below:
1010

1111
- AD COMPUTERs
12-
1312
- ADLINK In-Vehicle Computers
1413
- NXP In-Vehicle Computers
1514
- Neousys In-Vehicle Computers
1615
- Crystal Rugged In-Vehicle Computers
1716

1817
- LiDARs
19-
2018
- Velodyne 3D LiDAR Sensors
2119
- Robosense 3D LiDAR Sensors
2220
- HESAI 3D LiDAR Sensors
@@ -25,25 +23,21 @@ The documents consists of the sections listed below:
2523
- Ouster 3D LiDAR Sensors
2624

2725
- RADARs
28-
2926
- Smartmicro Automotive Radars
3027
- Aptiv Automotive Radars
3128
- Continental Engineering Radars
3229

3330
- CAMERAs
34-
3531
- FLIR Machine Vision Cameras
3632
- Lucid Vision Cameras
3733
- Allied Vision Cameras
3834
- Tier IV Cameras
3935
- Neousys Technology Cameras
4036

4137
- Thermal CAMERAs
42-
4338
- FLIR Thermal Automotive Dev. Kit
4439

4540
- IMU, AHRS & GNSS/INS
46-
4741
- NovAtel GNSS/INS Sensors
4842
- XSens GNSS/INS & IMU Sensors
4943
- SBG GNSS/INS & IMU Sensors
@@ -53,26 +47,22 @@ The documents consists of the sections listed below:
5347

5448
- Vehicle Drive By Wire Suppliers
5549
<!-- cspell: ignore Paravan -->
56-
5750
- Dataspeed DBW Solutions
5851
- AStuff Pacmod DBW Solutions
5952
- Schaeffler-Paravan Space Drive DBW Solutions
6053

6154
- Vehicle Platform Suppliers
62-
6355
- PIX MOVING Autonomous Vehicle Solutions
6456
- Autonomoustuff AV Solutions
6557
- NAVYA AV Solutions
6658

6759
- Remote Drive
68-
6960
- FORT ROBOTICS
7061
- LOGITECH
7162

7263
- Full Drivers List
7364

7465
- AD Sensor Kit Suppliers
75-
7666
- LEO Drive AD Sensor Kit
7767
- TIER IV AD Kit
7868
- RoboSense AD Sensor Kit

docs/tutorials/ad-hoc-simulation/rosbag-replay-simulation.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
## Steps
44

55
1. Download and unpack a sample map.
6-
76
- You can also download [the map](https://drive.google.com/file/d/1A-8BvYRX3DhSzkAnOcGWFw5T30xTlwZI/view?usp=sharing) manually.
87

98
```bash
@@ -12,7 +11,6 @@
1211
```
1312

1413
2. Download the sample rosbag files.
15-
1614
- You can also download [the rosbag files](https://drive.google.com/file/d/1sU5wbxlXAfHIksuHjP3PyI2UVED8lZkP/view?usp=sharing) manually.
1715

1816
```bash

0 commit comments

Comments
 (0)