-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add gazebo simulation * feat: add meta packages * feat: add navigation simulator
- Loading branch information
1 parent
1528fa4
commit 2ff45dd
Showing
26 changed files
with
2,695 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
project(navyu) | ||
|
||
if(NOT CMAKE_CXX_STANDARD) | ||
set(CMAKE_CXX_STANDARD 17) | ||
endif() | ||
|
||
find_package(ament_cmake_auto REQUIRED) | ||
ament_package() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0"?> | ||
<package format="3"> | ||
<name>navyu</name> | ||
<version>0.1.0</version> | ||
<description>The navyu package</description> | ||
<maintainer email="[email protected]">RyuYamamoto</maintainer> | ||
<license>Apache License 2.0</license> | ||
|
||
<buildtool_depend>ament_cmake_auto</buildtool_depend> | ||
|
||
<depend>rclcpp</depend> | ||
<depend>navyu_simulator</depend> | ||
<depend>navyu_navigation</depend> | ||
|
||
<exec_depend>launch_ros</exec_depend> | ||
<test_depend>ament_lint_auto</test_depend> | ||
<test_depend>ament_lint_common</test_depend> | ||
|
||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
project(navyu_navigation) | ||
|
||
if(NOT CMAKE_CXX_STANDARD) | ||
set(CMAKE_CXX_STANDARD 17) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
set(CMAKE_CXX_EXTENSIONS OFF) | ||
endif() | ||
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") | ||
add_compile_options(-Wall -Wextra -Wpedantic ) | ||
endif() | ||
|
||
find_package(ament_cmake_auto REQUIRED) | ||
ament_auto_find_build_dependencies() | ||
|
||
if(BUILD_TESTING) | ||
find_package(ament_lint_auto REQUIRED) | ||
ament_lint_auto_find_test_dependencies() | ||
endif() | ||
|
||
ament_auto_package( | ||
INSTALL_TO_SHARE | ||
launch | ||
config | ||
rviz | ||
map | ||
) | ||
|
||
install(FILES DESTINATION share/${PROJECT_NAME}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
amcl: | ||
ros__parameters: | ||
alpha1: 0.2 | ||
alpha2: 0.2 | ||
alpha3: 0.2 | ||
alpha4: 0.2 | ||
alpha5: 0.2 | ||
base_frame_id: "base_footprint" | ||
beam_skip_distance: 0.5 | ||
beam_skip_error_threshold: 0.9 | ||
beam_skip_threshold: 0.3 | ||
do_beamskip: false | ||
global_frame_id: "map" | ||
lambda_short: 0.1 | ||
laser_likelihood_max_dist: 2.0 | ||
laser_max_range: 12.0 | ||
laser_min_range: -1.0 | ||
laser_model_type: "likelihood_field" | ||
max_beams: 60 | ||
max_particles: 500 | ||
min_particles: 50 | ||
odom_frame_id: "odom" | ||
pf_err: 0.05 | ||
pf_z: 0.99 | ||
recovery_alpha_fast: 0.0 | ||
recovery_alpha_slow: 0.0 | ||
resample_interval: 1 | ||
robot_model_type: "nav2_amcl::DifferentialMotionModel" | ||
save_pose_rate: 0.5 | ||
sigma_hit: 0.2 | ||
tf_broadcast: true | ||
transform_tolerance: 1.0 | ||
update_min_a: 0.3 | ||
update_min_d: 0.2 | ||
z_hit: 0.5 | ||
z_max: 0.05 | ||
z_rand: 0.5 | ||
z_short: 0.05 | ||
scan_topic: scan | ||
map_topic: map | ||
set_initial_pose: true | ||
always_reset_initial_pose: true | ||
first_map_only: false | ||
initial_pose: | ||
x: 0.0 | ||
y: 0.0 | ||
z: 0.0 | ||
yaw: 0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
global_costmap: | ||
global_costmap: | ||
ros__parameters: | ||
update_frequency: 1.0 | ||
publish_frequency: 1.0 | ||
global_frame: map | ||
robot_base_frame: base_link | ||
use_sim_time: True | ||
robot_radius: 0.18 | ||
resolution: 0.05 | ||
track_unknown_space: true | ||
plugins: ["static_layer", "obstacle_layer", "voxel_layer", "inflation_layer"] | ||
obstacle_layer: | ||
plugin: "nav2_costmap_2d::ObstacleLayer" | ||
enabled: True | ||
observation_sources: scan | ||
scan: | ||
topic: /scan | ||
max_obstacle_height: 2.0 | ||
clearing: True | ||
marking: True | ||
data_type: "LaserScan" | ||
raytrace_max_range: 3.0 | ||
raytrace_min_range: 0.0 | ||
obstacle_max_range: 2.5 | ||
obstacle_min_range: 0.0 | ||
voxel_layer: | ||
plugin: "nav2_costmap_2d::VoxelLayer" | ||
enabled: True | ||
publish_voxel_map: True | ||
origin_z: 0.0 | ||
z_resolution: 0.05 | ||
z_voxels: 16 | ||
max_obstacle_height: 2.0 | ||
mark_threshold: 0 | ||
observation_sources: scan | ||
scan: | ||
topic: /scan | ||
max_obstacle_height: 2.0 | ||
clearing: True | ||
marking: True | ||
data_type: "LaserScan" | ||
raytrace_max_range: 3.0 | ||
raytrace_min_range: 0.0 | ||
obstacle_max_range: 2.5 | ||
obstacle_min_range: 0.0 | ||
static_layer: | ||
plugin: "nav2_costmap_2d::StaticLayer" | ||
map_subscribe_transient_local: True | ||
inflation_layer: | ||
plugin: "nav2_costmap_2d::InflationLayer" | ||
cost_scaling_factor: 3.0 | ||
inflation_radius: 0.55 | ||
always_send_full_costmap: True | ||
global_costmap_client: | ||
ros__parameters: | ||
use_sim_time: True | ||
global_costmap_rclcpp_node: | ||
ros__parameters: | ||
use_sim_time: True |
Oops, something went wrong.