|
Repository Summary
Checkout URI | https://github.com/watonomous/wato_monorepo.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-03-28 |
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 |
---|---|
behaviour_planning | 0.0.0 |
global_planning | 0.0.0 |
local_planning | 0.0.0 |
model_predictive_control | 0.0.0 |
can_interfacing | 0.0.0 |
sensor_interfacing | 0.0.0 |
camera_object_detection | 0.0.0 |
depth_estimation | 0.0.0 |
lane_detection | 0.0.0 |
lidar_object_detection | 0.0.0 |
perception_utils | 0.0.1 |
radar_object_detection_launch | 0.0.0 |
radar_vis | 0.0.0 |
semantic_segmentation | 0.0.0 |
tracking | 0.0.0 |
traffic_light_detection | 0.0.0 |
aggregator | 0.0.0 |
producer | 0.0.0 |
transformer | 0.0.0 |
carla_config | 0.0.0 |
carla_sample_node | 0.0.0 |
common_msgs | 0.0.0 |
camera_object_detection_msgs | 0.0.0 |
lane_detection_msgs | 0.0.0 |
radar_msgs | 0.0.0 |
sample_msgs | 0.0.0 |
embedded_msgs | 0.0.0 |
path_planning_msgs | 0.0.0 |
world_modeling_msgs | 0.0.0 |
hd_map | 0.0.0 |
localization | 0.0.0 |
motion_forecasting | 0.0.0 |
occupancy | 0.0.0 |
occupancy_segmentation | 0.0.0 |
README
WATonomous Monorepo v2
Dockerized ROS2 setup for the WATonomous Autonomous Vehicle Software Pipeline
Getting Started
Read the following:
- docs/setup.md How to setup our repo.
TLDR: Clone the monorepo, specify active modules, watod up
. Everything is containerized, so there’s little need to setup any dependencies on your end :).
- docs/monorepo.md What is a monorepo? Why a monorepo?
- docs/how_to_dev.md How to develop in the monorepo.
Description of Important Files and Directories
Below is a tree diagram of the Monorepo.
wato_monorepo_v2
├── watod-setup-env.sh
├── docker
│ ├── samples
│ │ └── cpp
│ │ ├── Dockerfile.aggregator
│ │ ├── Dockerfile.producer
│ │ └── Dockerfile.transformer
│ └── wato_ros_entrypoint.sh
├── docs
├── modules
│ └── docker-compose.samples.yaml
├── scripts
├── src
│ ├── motion_planning_and_control
│ ├── perception
│ ├── wato_msgs
│ │ └── sample_msgs
│ │ ├── CMakeLists.txt
│ │ ├── msg
│ │ └── package.xml
│ ├── samples
│ │ └── cpp
│ │ ├── aggregator
│ │ ├── image
│ │ ├── producer
│ │ ├── README.md
│ │ └── transformer
│ ├── sensor_interfacing
│ ├── simulation
│ ├── tools
│ └── world_modeling
└── watod
-
watod
.- This is the main bash script that you will use to interface with your containers. More info on
watod
: docs/dev/watod.md.
- This is the main bash script that you will use to interface with your containers. More info on
-
watod-setup-env.sh
.- watod-setup-env.sh (in scripts directory) will create a .env file specifying environment variables for docker-compose.
watod
automatically runs this script before running any commands. To override variables inwatod-setup-env.sh
, create awato2-config.sh
file and populate it with variables, for exampleACTIVE_MODULES="perception path_planning"
.watod-setup-env.sh
will then take this file into account when building the.env
file.
- watod-setup-env.sh (in scripts directory) will create a .env file specifying environment variables for docker-compose.
-
scripts/watod-completion.bash
.- Bash autocomplete for watod. Adapted from docker-compose. Add
source <MONO_DIR>/scripts/watod-completion.bash
to your bashrc to use autocomplete.
- Bash autocomplete for watod. Adapted from docker-compose. Add
-
modules/
:- This folder contains all docker-compose files specifying the services we will run. They are grouped up into modules. Note that by default no modules are enabled. To select additional modules, overwrite
ACTIVE_MODULES="<MODULES_OF_YOUR_CHOICE"
inwato2-config.sh
. See the docker-compose wiki. More info on modules: docs/dev/modules.md.
- This folder contains all docker-compose files specifying the services we will run. They are grouped up into modules. Note that by default no modules are enabled. To select additional modules, overwrite
-
docker/
:- This folder contains the
Dockerfiles
for each of our images. Docker wiki.
- This folder contains the
-
src/
:- Here is where all the logic and cool technologies for autonomous software go. The folders in
src
will be mounted to our docker images, so changes in thesrc
directory will be reflected in the containers.
- Here is where all the logic and cool technologies for autonomous software go. The folders in
-
docs/
:- This folder contains the documentation for this monorepo, including instructions for setup and details on how to navigate and develop in this monorepo.
Documentation
Setup Docs
Important Topics for Developers
Using Foxglove
Foxglove is used to visualize ROS messages on a local machine.
Add infrastructure
as an ACTIVE_MODULES
and watod up
.
It exposes the port specified by the FOXGLOVE_BRIDGE_PORT
variable, which you will need to forward to your local machine. This can either be done in the ports
section of VS Code or by running the command ssh -L 8765:localhost:8765 <username>@<machine>-ubuntu1.watocluster.local
on your local machine.
Then, open foxglove and add a connection localhost:8765
, and it should connect.
Playing Rosbags
Add infrastructure
as an ACTIVE_MODULES
and watod run
.
An example of the command, feel free to change the mcap
file being run.
./watod run data_stream ros2 bag play ./nuscenes/NuScenes-v1.0-mini-scene-0061/NuScenes-v1.0-mini-scene-0061_0.mcap
Monorepo Info
Technical Specification
Docker, Continuous Integration: tech_spec.md