Cloud Robotics
News and information about web applications for ROS-based robots
Cloud Robotics
Web Application
Jupyter
RoboStack
2D Navigation
Map formats
- Export map data from Google My Maps to a KML file
- ASSURE Mapping Tools
- ASSURE Mapping Tools tutorials
Microsoft
AWS RoboMaker
- RoboMaker Documentation
- RoboMaker Cheat Sheet
- Deep Racer
- Colcon Bundle Format
- AWS RoboMaker sample applications Gzweb
- Deploying Robotic Applications Using Machine Learning with Nvidia JetBot and AWS RoboMaker
Build and bundle ROS1 projects locally using colcon
In this example, we will build and bundle the hello world simulation workspace from AWS RoboMaker:
- Clone the repository in your local machine:
git clone https://github.com/aws-robotics/aws-robomaker-sample-application-helloworld.git
- Run ros-kinetic-colcon docker image:
docker run -it -v $(pwd):/workspace nubonetics/ros-kinetic-colcon /bin/bash
- In the docker image, go to the workspace folder:
cd aws-robomaker-sample-application-helloworld/simulation_w
- Run the following commands to update and install dependencies:
apt-get update
rosdep update
rosws update
rosdep install --from-paths src --ignore-src -r -y
- Build the workspace:
colcon build
- Bundle the workspace:
source install/local_setup.sh
colcon bundle --bundle-version 1
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.
Last modified 06.03.2022: Update Apps.md (98505d2)