Delphyne is a traffic level simulator for autonomous driving.
Road network model is provided by Maliput
libraries.
Related packages:
delphyne
.delphyne
.Refer to Delphyne's Online API Documentation.
Visit delphyne_demos.
Ubuntu Focal Fossa 20.04 LTS.
sudo apt install python3-rosdep python3-colcon-common-extensions
Create colcon workspace if you don't have one yet.
mkdir colcon_ws/src -p
Clone dependencies in the src
folder
cd colcon_ws/src
git clone https://github.com/maliput/drake_vendor.git
Clone this repository in the src
folder
cd colcon_ws/src
git clone https://github.com/maliput/delphyne.git
Install package dependencies via rosdep
export ROS_DISTRO=foxy
rosdep update
rosdep install -i -y --rosdistro $ROS_DISTRO --from-paths src
Follow instructions to install drake via drake_vendor
package.
Build the package
colcon build --packages-up-to delphyne
Note: To build documentation a -BUILD_DOCS
cmake flag is required:
colcon build --packages-select delphyne --cmake-args " -DBUILD_DOCS=On"
More info at Building Documentation.
For further info refer to Source Installation on Ubuntu
It is recommended to follow the guidelines for setting up a development workspace as described here.
Please see CONTRIBUTING page.