Skip to content

Create a path planner that is able to navigate a car safely around a virtual highway

License

Notifications You must be signed in to change notification settings

kunlin596/PathPlanning

 
 

Repository files navigation

CarND Path Planning Project

Self-Driving Car Engineer Nanodegree Program

Lane Changing Example Full Cycle (4.25 Miles) Example

Description

In this project, the goal is to safely navigate around a virtual highway with other traffic that is driving +-10 MPH of the 50 MPH speed limit.

The car's localization and sensor fusion data will be provided by the simulator. There is also a sparse map contains a list of waypoints around the highway. The car should try to go as close as possible to the 50 MPH speed limit, which means passing slower traffic when possible, note that other cars will try to change lanes too.

The ego car should avoid hitting other cars at all cost as well as driving inside of the marked road lanes at all times, unless going from one lane to another. The car should be able to make one complete loop around the 6946m highway. Since the car is trying to go 50 MPH, it should take a little over 5 minutes to complete 1 loop. Also the car should not experience total acceleration over 10 m/s^2 and jerk that is greater than 10 m/s^3.

The highway's waypoints loop around so the frenet s value, distance along the road, goes from 0 to 6945.554.

More technical details please check writeup.

Simulator

Usage

Download the Term3 Simulator which contains the Path Planning Project from the releases tab.

To run the simulator on macOS/Linux,

sudo chmod u+x term3_sim.x86_64
./term3_sim.x86_64

Details

  1. The ego use a perfect controller and will visit every (x,y) point it recieves in the list every 0.02 seconds.
  2. The units for the [x, y] points are in meters and the spacing of the points determines the speed of the car.
  3. The vector going from a point to the next point in the list dictates the angle of the car.
  4. Acceleration both in the tangential and normal directions is measured along with the jerk, the rate of change of total Acceleration.
  5. The [x, y] point paths that the planner recieves should not have a total acceleration that goes over 10 m/s^2, also the jerk should not go over 50 m/s^3.
    • NOTE: As this is BETA, these requirements might change. Also currently jerk is over a 0.02 second interval, it would probably be better to average total acceleration over 1 second and measure jerk from that.
  6. There will be some latency between the simulator running and the path planner returning a path, with optimized code usually its not very long maybe just 1-3 time steps. During this delay the simulator will continue using points that it was last given, because of this its a good idea to store the last points you have used so you can have a smooth transition.
    • previous_path_x, and previous_path_y can be helpful for this transition since they show the last points given to the simulator controller with the processed points already removed. You would either return a path that extends this previous path or make sure to create a new path that has a smooth transition with this last path.

Build

Docker One Liner

Using docker is recommended. Check this official guide.

cd YOUR_CLONE_PATH
docker build -t pathplanningserver:latest .
docker run -p 4567:4567 pathplanningserver:latest

Local Build

Dependencies

  • cmake >= 3.5
  • uWebSockets
    git clone https://github.com/uWebSockets/uWebSockets 
    cd uWebSockets
    git checkout e94b6e1
    mkdir build && cd build && cmake .. && make install
  • spdlog >= 1.9
    git clone https://github.com/gabime/spdlog.git
    cd spdlog
    mkdir build && cd build && cmake .. && make install
Debian/Ubuntu
sudo apt-get install python3-dev pybind11-dev libfmt-dev libspdlog-dev libboost-all-dev libgtest-dev
Third Party Libraries Included

Instructions

git checkout https://github.com/kunlin596/PathPlanning.git
cd PathPlanning
cmake -DCMAKE_BUILD_TYPE=Release -S . -B build
cmake --build build -j 16 --target pathplanningserver 

Run

The simulator should be lauched simultaneously with the path planning server. Use the command below to lauch the path planning server.

./build/pathplanningserver --conf default_conf.json -m data/highway_map.csv --loglevel=info

Input Data

The input data to the path planner server is described as below.

Map Data

The map of the highway is in data/highway_map.txt.

Each waypoint in the list contains [x, y, s, dx, dy] values. x and y are the waypoint's map coordinate position, the s value is the distance along the road to get to that waypoint in meters, the dx and dy values define the unit normal vector pointing outward of the highway loop.

Ego's localization

There is no noise in the localization result. The format is described as below,

- x: The car's x position in map coordinates
- y: The car's y position in map coordinates
- s: The car's s position in frenet coordinates
- d: The car's d position in frenet coordinates
- yaw: The car's yaw angle in the map in degree
- speed: The car's speed in MPH

Previous path data

The previous path contains the waypoints haven't been consumed by the simulator from the previous path sent to the simulator. The format is described as below,

- previous_path_x: The previous list of x points previously given to the simulator
- previous_path_y: The previous list of y points previously given to the simulator

Previous path's end s and d values

- end_path_s: The previous list's last point's frenet s value
- end_path_d: The previous list's last point's frenet d value

Perception Data

sensor_fusion A 2d vector of cars and then that car's id, kinematics, etc. Each row contains,

[
  car's unique ID,
  car's x position in map coordinates,
  car's y position in map coordinates,
  car's x velocity in m/s,
  car's y velocity in m/s,
  car's s position in frenet coordinates,
  car's d position in frenet coordinates
]

Code Style

The python code is formated using black. The cpp code is formated using clang format using a slightly modified version of Mozilla coding standard.

Result Video

YouTube

References

  • Werling, J. Ziegler, S. Kammel, and S. Thrun, "Optimal trajectory generation for dynamic street scenarios in a frenet frame," in ICRA, 2010, pp. 987–993.

About

Create a path planner that is able to navigate a car safely around a virtual highway

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 82.8%
  • Fortran 11.3%
  • C 2.2%
  • CMake 1.8%
  • Cuda 1.1%
  • Python 0.5%
  • Other 0.3%