-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmapping_values.py
42 lines (37 loc) · 1.18 KB
/
mapping_values.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
vehicle_condition_map = {
"new": 1,
"like new": 2,
"excellent": 3,
"good": 4,
"fair": 5,
"salvage": 6,
}
vehicle_fuel_type_map = {
"electric": 1,
"hybrid": 2,
"gas": 3,
"diesel": 4,
"other": 5,
}
vehicle_title_status_map = {
"clean": 1,
"rebuilt": 2,
"lien": 3,
"salvage": 4,
"parts only": 5,
"missing": 6,
}
vehicle_transmission_map = {
"automatic": 1,
"other": 2,
"manual": 3,
}
vehicle_size_map = {
"compact": 1,
"sub-compact": 2,
"mid-size": 3,
"full-size": 4,
}
# manufacturer = "bmw","toyota","honda","chevrolet","mazda","ford","volvo","cadillac","saturn","subaru","dodge","gmc","ram","chrysler","mercedes-benz","infiniti","jeep","buick","nissan","volkswagen","mercury","hyundai","lexus","porsche","rover","audi","fiat","mini","mitsubishi","lincoln","jaguar","kia","pontiac","acura","tesla","alfa-romeo","datsun","harley-davidson","land rover","aston-martin","ferrari"
# type = "SUV","mini-van","convertible","coupe","truck","wagon","sedan","pickup","hatchback","van","other","bus","offroad"
# paint_color = "blue","white","grey","black","brown","red","silver","green","yellow","purple","custom","orange"