Skip to content

Commit 3fff13c

Browse files
committed
Initial commit
0 parents  commit 3fff13c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+36220
-0
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.py[cod]
2+
3+
build
4+
devel
5+
6+
profile.tmp

README.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
### Installation
2+
3+
* [ROS](http://wiki.ros.org/indigo/Installation/Ubuntu)
4+
* [Dataspeed DBW](https://bitbucket.org/DataspeedInc/dbw_mkz_ros)
5+
* [Autoware](https://github.com/CPFL/Autoware)
6+
7+
Download the [Udacity Simulator](https://github.com/udacity/self-driving-car-sim).
8+
9+
### Usage
10+
11+
1. Install python dependencies
12+
```bash
13+
cd styx
14+
pip install -r requirements.txt
15+
```
16+
2. Make and run styx
17+
```bash
18+
cd ros
19+
catkin_make
20+
source devel/setup.sh
21+
roslaunch launch/styx.launch
22+
```
23+
3. In terminal, specify path to Unity simulator
24+
```bash
25+
What is the full path to your Unity simulator?
26+
/home/calebkirksey/Desktop/lights_no_auto_no_cars/ros_test.x86_64
27+
```
28+
The virtual car should start moving in the Unity simulator
29+
![unity running](imgs/unity.png)

data/maptf.launch

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<launch>
2+
3+
<node pkg="tf" type="static_transform_publisher" name="world_to_map"
4+
args="0 0 0 0 0 0 /world /map 10" />
5+
6+
</launch>

0 commit comments

Comments
 (0)