From 2825eeb5067775f096b48b24487bacba9f086a70 Mon Sep 17 00:00:00 2001
From: kraleva <viktoriakraleva@gmail.com>
Date: Sat, 8 Apr 2023 14:05:04 +0200
Subject: [PATCH] add map-matching

---
 README.md | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/README.md b/README.md
index 8f9f4b4..2fb55b8 100644
--- a/README.md
+++ b/README.md
@@ -24,12 +24,16 @@ protoc --proto_path=debug-tool/proto/schema --python_out=./debug-tool/proto debu
 
 - the weight of the edges correspond to the duration of passing the edge
 
+- the start point, which is passed on the algorithm is matched to a segment on the map 
+
 - AStar algorithm is applied to resulting graph by using AStarShortestPath by JGraphT
 
 - algorithm is adapted to our requirements by checking for turn restrictions and forbidden weather conditions for the edges of the path and by searching in a given period of time 
 
 - heuristic: haversine distance between current and target node
 
+
+Further details of the project can be found in our [organisational page](https://git.imp.fu-berlin.de/swp-datenverwaltung-navigation-2023/organisational), where our project report can be downloaded.
 ## Start the application in Docker
 To start the appliaction in Docker, you have to clone the  repositories of [map-data-parser](https://git.imp.fu-berlin.de/swp-datenverwaltung-navigation-2023/map-data-parser), [metric-builder](https://git.imp.fu-berlin.de/swp-datenverwaltung-navigation-2023/metric-builder) and routing-service (the one you are on right now) into your local system. Inside the headfolders of these repositories, there are Docker Image files named <servicename>.tar. You have to load these images into your local Docker enviroment. This can be easily done by pasting  
 ```sh
-- 
GitLab