First of all thank you for you contribution to this amazing project.
What I am doing:
1) Created GTFS static files(routes, shapes etc) and looks quite good.
2) Took the raw data (each vehicle location) and created a get rest api which downloads the vehicle location under a pb file
an example of what entity I am returning.
header {
gtfs_realtime_version: "1.0"
incrementality: FULL_DATASET
timestamp: 1597938427
}
entity {
id: "0"
vehicle {
position {
latitude: 47.02604293823242
longitude: 28.830793380737305
}
timestamp: 1597938427
vehicle {
id: "0"
}
}
}
3. I have compiled transitclockQuickStart and before running it I changed the properties file with the following changed
4. I am opening the web app and I see the routes and other static information, but the vehicle position api returns me {"vehicles":[]}
What I am doing wrong ?
Can someone point me to somekind of "how to do"
Thank you and really appreciate.