comparison python/storage.py @ 326:f7872d15a6cc

added user type ids
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Thu, 23 May 2013 17:57:11 +0200
parents c71540470057
children 42f2b46ec210
comparison
equal deleted inserted replaced
325:6c9c7c956926 326:f7872d15a6cc
9 9
10 10
11 ngsimUserTypes = {'twowheels':1, 11 ngsimUserTypes = {'twowheels':1,
12 'car':2, 12 'car':2,
13 'truck':3} 13 'truck':3}
14
15 sqliteUserTypeNames = ['unknown',
16 'car',
17 'pedestrian',
18 'motorcycle',
19 'bicycle',
20 'bus',
21 'truck']
22
14 23
15 ######################### 24 #########################
16 # txt files 25 # txt files
17 ######################### 26 #########################
18 27