|
Repository Summary
Checkout URI | https://github.com/jk-h/src_with_lanelet2.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2022-06-01 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Packages
Name | Version |
---|---|
autoware_control_msgs | 0.1.0 |
autoware_lanelet2_msgs | 0.1.0 |
autoware_perception_msgs | 0.1.0 |
autoware_planning_msgs | 0.1.0 |
autoware_system_msgs | 0.1.0 |
autoware_vehicle_msgs | 0.1.0 |
lanelet2 | 1.0.1 |
lanelet2_core | 1.0.1 |
lanelet2_examples | 1.0.1 |
lanelet2_io | 1.0.1 |
lanelet2_maps | 1.0.1 |
lanelet2_projection | 1.0.1 |
lanelet2_python | 1.0.1 |
lanelet2_routing | 1.0.1 |
lanelet2_traffic_rules | 1.0.1 |
lanelet2_validation | 1.0.1 |
lanelet2_extension | 0.1.0 |
map_loader | 0.1.0 |
map_tf_generator | 0.1.0 |
lanelet2_map_preprocessor | 0.1.0 |
mission_planner | 0.1.0 |
simple_planning_simulator | 0.1.0 |
dummy_perception_publisher | 0.1.0 |
README
Full Coverage With Lanelet2
Overview
Plan and visualize the full coverage path in a Lanelet2 Map.
Based on
- https://github.com/AbangLZU/ad_with_lanelet2.git
Installation
Manual installation
In case you want to build it in your own way (without the above Docker image) use these instructions.
Lanelet2 uses Catkin for building and is targeted towards Linux.
At least C++14 is required.
Dependencies
Besides Catkin, the dependencies are
-
Boost
(from 1.58) eigen3
-
mrt_cmake_modules
, a CMake helper library -
pugixml
(for lanelet2_io) -
boost-python, python2 or python3
(for lanelet2_python) -
geographiclib
(for lanelet2_projection) -
rosbash
(for lanelet2_examples)
For Ubuntu, the steps are the following:
-
Set up ROS, and install at least
rospack
,catkin
andmrt_cmake_modules
(e.g.ros-melodic-rospack
,ros-melodic-catkin
,ros-melodic-mrt-cmake-modules
):
sudo apt-get install ros-melodic-rospack ros-melodic-catkin ros-melodic-mrt-cmake-modules ros-melodic-unique-id
FOR ROS-kinetic:
sudo apt-get install ros-kinetic-unique-id
- Install the dependencies above:
sudo apt-get install libboost-dev libeigen3-dev libgeographic-dev libpugixml-dev libpython-dev libboost-python-dev python-catkin-tools
On 16.04 and below, mrt_cmake_modules
is not available in ROS and you have to clone it into your workspace (git clone https://github.com/KIT-MRT/mrt_cmake_modules.git
).
cd catkin_ws/src
git clone https://github.com/KIT-MRT/mrt_cmake_modules.git
Building
As usual with Catkin, after you have sourced the ros installation, you have to create a workspace and clone all required packages there. Then you can build.
source /opt/ros/$ROS_DISTRO/setup.bash
mkdir catkin_ws && cd catkin_ws && mkdir src
catkin init
catkin config --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo # build in release mode (or whatever you prefer)
cd src
git clone https://gitlab.senseauto.com/huangjikai/full_coverage_with_lanelet2.git
cd ..
catkin build
Note: build error:
error: unable to find numeric literal operator ‘operator""Q’
BOOST_DEFINE_MATH_CONSTANT...
need to modify the CMakeLists.txt files in following path:
./map/lanelet2_extension
./planning/mission_planning/mission_planner
./map/util/lanelet2_map_preprocessor
#add_compile_options(-std=c++14)
add_compile_options(-std=c++11)
#add_compile_options(-std=gnu++11)
add_compile_options(-fext-numeric-literals)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DBOOST_MATH_DISABLE_FLOAT128")
Running
cd your_ros_workspace
source devel/setup.bash
roslaunch src/ad_with_lanelet2/run_map_simulator.launch
In Rviz: Set start point by 2D Pose Estimate. Set goal point by 2D Nav Goal. The full_coverage_path is generated and displayed dynamically.