Skip to content

Commit 8189ed0

Browse files
authored
Added examples of ROS 2 packages (#8)
* Added route_server for nav2 * Added examples from nav stack * Added more component specifications * Added more examples of NavStack specifications * Added bt_navigator component * Added behavior server * Added ukf_localization and ekf_localization nodes * Added navsat_transform_node from robot localization * Added test to ensure examples parse * Fixed ruff check * Updated pre-commit-hook * Updated pre-commit hooke & README
1 parent 337b47a commit 8189ed0

200 files changed

Lines changed: 1850 additions & 166 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ indent_style = space
99
indent_size = 4
1010

1111
[*.{yml,yaml}]
12-
indent_size = 4
12+
indent_size = 4

.pre-commit-config.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ repos:
2020
- id: codespell
2121
args:
2222
- --ignore-words-list=rospec
23+
- repo: local
24+
hooks:
25+
- id: pytest
26+
name: pytest
27+
entry: pytest
28+
language: system
29+
pass_filenames: false
2330
# Should be the last one:
2431
- repo: meta
2532
hooks:

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
add requirements.txt
1+
add requirements.txt

README.md

Lines changed: 2 additions & 1 deletion

examples/evaluation/detectable-108291.rospec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ node type stereo_image_proc_type {
44

55
system {
66
node instance stereo_image_proc: stereo_image_proc_type { }
7-
}
7+
}

examples/evaluation/detectable-11095.rospec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ system {
1313
context is_simulation = true;
1414
param use_sim_time = false;
1515
}
16-
}
16+
}

examples/evaluation/detectable-11547.rospec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,3 @@ system {
2525
param depth_frame_id = "/openni_depth_optical_frame_2";
2626
}
2727
}
28-

examples/evaluation/detectable-12977.rospec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ system {
1212
param local_costmap/min_obstacle_height = 0.10;
1313
param local_costmap/footprint = [[-0.4, -0.4], [-0.4, 0.4], [0.4, 0.4], [0.4, 0.4]];
1414
}
15-
}
15+
}

examples/evaluation/detectable-142456.rospec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ node type custom_node_type {
3333
system {
3434
node instance custom_node: custom_node_type { }
3535
node instance openni_camera_driver: openni_camera_driver_depth_type { }
36-
}
36+
}

examples/evaluation/detectable-164526.rospec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ node type hector_map_server_type {
1212
system {
1313
node instance hector_object_tracker: hector_object_tracker_type { }
1414
node instance hector_map_server: hector_map_server_type { }
15-
}
15+
}

0 commit comments

Comments
 (0)