opentraffic / reporter

OTv2: distributed service that matches raw GPS probe data to OSMLR segments and sends anonymized speeds to Datastore
GNU Lesser General Public License v3.0
13 stars 16 forks source link

service uses threadpool #13

Closed kevinkreiser closed 7 years ago

kevinkreiser commented 7 years ago

this lets us only make one segment matcher per thread and greatly helps caching for map matching. ive also moved gpx stuff into its own file until we pick it up again and used with keyword in the csv formatter. ive also removed elapsed time from the csv formatter because we can compute it on any trace by simply doing:

elapsed_seconds = trace[-1]['time'] - trace[0]['time']
kdiluca commented 7 years ago

awesome! :+1:

kdiluca commented 7 years ago

:+1: