You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Preview the robot model in RViz. Useful when manually tweaking urdf files.
110
+
111
+
```bash
112
+
ros2 launch uirover_description preview.launch.py
113
+
```
114
+
115
+
### Mapproxy
116
+
117
+
[Mapproxy](https://mapproxy.org/) is a map tile provider which allows map data to be cached locally for offline use. To use it offline, the map cache must first be "seeded" with data from an online source.
Map proxy UI can be found at [http://localhost:8080/demo/](http://localhost:8080/demo/) while the service is running.
132
+
133
+
Map tiles will be served at [http://localhost:8080/tiles/satellite/webmercator/{z}/{x}/{y}.png](http://localhost:8080/tiles/satellite/webmercator/1/1/1.png) where {x}, {y}, and {z} are the tile coordinates.
134
+
135
+
More info can be found in the [mapproxy docs](https://mapproxy.github.io/mapproxy/latest/index.html)
136
+
137
+
### MoveIt2
138
+
139
+
[MoveIt2](https://moveit.ros.org/) is a motion planning framework for ROS2. It will do inverse kinematics, path planning, and collision checking for the rover arm.
140
+
141
+
To view the demo for our arm, run:
142
+
143
+
```bash
144
+
ros2 launch uirover_moveit demo.launch.py
145
+
```
146
+
147
+
More info can be found in the [MoveIt2 docs](https://moveit.picknik.ai/main/index.html)
148
+
149
+
> [!WARNING]
150
+
>
151
+
> As of **October 2025**, MoveIt2's setup assistant has a fatal issue caused by a version incompatibility with Rviz2. The current workaround is to downgrade to an older version of Rviz2. The GitHub issue is found [here](https://github.com/moveit/moveit2/issues/3546). A script is provided to automate this process:
152
+
>
153
+
>```bash
154
+
>./tools/misc/moveit_rviz_workaround.sh
155
+
>```
156
+
157
+
### Perception
158
+
159
+
Camera streams (sources) and viewers (sinks) can be launched with the following commands:
0 commit comments