# HG changeset patch # User Nicolas Saunier # Date 1369324631 -7200 # Node ID f7872d15a6ccff645bd882a7a3c6f5d55e6a33d2 # Parent 6c9c7c95692620586d6abd73cca3166781b24384 added user type ids diff -r 6c9c7c956926 -r f7872d15a6cc python/storage.py --- a/python/storage.py Fri May 10 21:32:11 2013 +0200 +++ b/python/storage.py Thu May 23 17:57:11 2013 +0200 @@ -12,6 +12,15 @@ 'car':2, 'truck':3} +sqliteUserTypeNames = ['unknown', + 'car', + 'pedestrian', + 'motorcycle', + 'bicycle', + 'bus', + 'truck'] + + ######################### # txt files #########################