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
{{ message }}
This repository was archived by the owner on May 22, 2023. It is now read-only.
{
"credits": [bike, transit, walking, electric] //[bike, public transportation, walking, electric small vehicles]"duration": [bike, transit, walking, electric] //time in min"distance": [bike, walking, electric] //distance in m
}
sendTrip
on the endpoint sendTrip the device sends the list of geoPositions after finishing the trip
POST request:
INITIAL
UUID
on the endpoint
/genUserthe server returns a UUID in the following format:{ "id": "c35fc27a-ceb2-4304-a45b-ec152c2ecba1" }TRACK
routeInfo
on the endpoint
/routeInfoplanned trip infos are deliveredPOST request:
{ "id": "c35fc27a-ceb2-4304-a45b-ec152c2ecba1", "latitude": 33.123 "longitude": 33.123 "destination": "Leopoldstraße 9, 80802, München" }Answer:
{ "credits": [bike, transit, walking, electric] //[bike, public transportation, walking, electric small vehicles] "duration": [bike, transit, walking, electric] //time in min "distance": [bike, walking, electric] //distance in m }sendTrip
on the endpoint
sendTripthe device sends the list of geoPositions after finishing the tripPOST request:
{ "id": "c35fc27a-ceb2-4304-a45b-ec152c2ecba1", "method": 0 //0=bike, 1=walk, 2=public, 3= electric small vehicles, 4 = car "geoData": [ { "timestamp": 1668866921 "latitude": 0.12312342 "longitude": 0.123143 }, { "timestamp": 1668866921 "latitude": 0.12312342 "longitude": 0.123143 }, { "timestamp": 1668866921 "latitude": 0.12312342 "longitude": 0.123143 } ] }Answer:
{ "credits": 100 "duration": 120 "distance": 8000 }