-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabbrev.py
121 lines (121 loc) · 2.81 KB
/
abbrev.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
abbreviations = {
'acc': 'accident',
'acci': 'accident',
'accid': 'accident',
'auth': 'authorized',
'bac': 'blood alcohol',
'betwn': 'between',
'canc': 'cancel',
'cdl': 'commercial drivers license',
'chng': 'change',
'comb': 'combined',
'cond': 'condition',
'const': 'construction',
'cont': 'controlled',
'conv': 'conviction',
'ctrl': 'control',
'd': '',
'def': 'defective',
'dept': 'department',
'dev': 'device',
'disp': 'display',
'displ': 'display',
'dist': 'distance',
'distr': 'distribute',
'dlr': 'dealer',
'dmv': 'department of motor vehicles',
'dob': 'date of birth',
'dr': 'drive',
'drgs': 'drugs',
'driv': 'drive',
'drvg': 'driving',
'dui': 'driving under the influence',
'dwr': 'driving while revoked',
'dws': 'driving while suspended',
'ed': 'education',
'emer': 'emergency',
'empl': 'employee',
'eng': 'engine',
'equip': 'equipment',
'etc': '',
'fin': 'financial',
'ft': 'feet',
'hab': 'habitual',
'haz': 'hazardous',
'hr': 'hour',
'hwy': 'highway',
'i': '',
'ie': '',
'imp': 'improper',
'infl': 'influence',
'inj': 'injury',
'ins': 'insurance',
'insp': 'inspection',
'judg': 'judgment',
'lic': 'license',
'lost/': 'lost',
'lt': 'left',
'maint': 'maintain',
'manuf': 'manufacturer',
'mat': 'material',
'mcyc': 'motorcycle',
'mfr': 'manufacturer',
'misrep': 'misrepresentation',
'mv': 'motor vehicle',
'mvr': 'motor vehicle record',
'occup': 'occupant',
'oper': 'operator',
'othr': 'other',
'parkd': 'parked',
'pd': 'property damage',
'ped': 'pedestrian',
'perm': 'permit',
'pi': 'personal injury',
'pkg': 'parking',
'priv': 'privilege',
'prob': 'probation',
'prog': 'program',
'proh': 'prohibited',
'proj': 'projecting',
'prp': 'property',
'pt': '',
'pvt': 'private',
'r.o.w': 'right of way',
'rd': 'road',
're': '',
'recd': 'record',
'reg': 'registration',
'rein': 'reinstatement',
'req': 'required',
'resp': 'responsibility',
'restr': 'restriction',
'ret': 'return',
'rev': 'revoked',
'rpt': 'report',
'rr': 'railroad',
'rt': 'right',
'schl': 'school',
'sdwk': 'sidewalk',
'st': 'street',
'sub': 'substance',
'subst': 'substance',
'surr': 'surrender',
'susp': 'suspension',
'svc': 'standard vehicle code',
'thru': 'through',
'traf': 'traffic',
'trans': 'transportation',
'uncl': 'unclassified',
'und': 'under',
'undr': 'under',
'veh': 'vehicle',
'viol': 'violation',
'w': 'with',
'w/o': 'without',
'wrng': 'warning',
'yld': 'yield',
'yr': 'year',
'yrs': 'years',
'“': '',
'”': ''
}