Skip to content
This repository has been archived by the owner on Jan 21, 2022. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
spicavigo committed Jul 28, 2017
0 parents commit 3fff13c
Show file tree
Hide file tree
Showing 56 changed files with 36,220 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*.py[cod]

build
devel

profile.tmp
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
### Installation

* [ROS](http://wiki.ros.org/indigo/Installation/Ubuntu)
* [Dataspeed DBW](https://bitbucket.org/DataspeedInc/dbw_mkz_ros)
* [Autoware](https://github.com/CPFL/Autoware)

Download the [Udacity Simulator](https://github.com/udacity/self-driving-car-sim).

### Usage

1. Install python dependencies
```bash
cd styx
pip install -r requirements.txt
```
2. Make and run styx
```bash
cd ros
catkin_make
source devel/setup.sh
roslaunch launch/styx.launch
```
3. In terminal, specify path to Unity simulator
```bash
What is the full path to your Unity simulator?
/home/calebkirksey/Desktop/lights_no_auto_no_cars/ros_test.x86_64
```
The virtual car should start moving in the Unity simulator
![unity running](imgs/unity.png)
6 changes: 6 additions & 0 deletions data/maptf.launch
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<launch>

<node pkg="tf" type="static_transform_publisher" name="world_to_map"
args="0 0 0 0 0 0 /world /map 10" />

</launch>
Loading

0 comments on commit 3fff13c

Please sign in to comment.