Coverage for blind_charging/locale/const.py: 100%
3 statements
« prev ^ index » next coverage.py v6.5.0, created at 2025-10-20 15:43 +0000
« prev ^ index » next coverage.py v6.5.0, created at 2025-10-20 15:43 +0000
1INDICATOR_POS_PREFIX = "prefix"
2INDICATOR_POS_SUFFIX = "suffix"
4# full list is from
5# http://bcdcspatial.blogspot.com/2012/09/normalize-to-usps-street-abbreviations.html
6# take partial list based on https://trafficsignstore.com/abbreviations.html
7# removed some of them as they may cause confusion or ambiguity
8# removed route, is, court, center
9USPS_STREET_ABBR = {
10 "alley",
11 "avenue",
12 "boulevard",
13 "bridge",
14 "canyon",
15 "circle",
16 "crescent",
17 "drive",
18 "expressway",
19 "freeway",
20 "highway",
21 "hill",
22 "island",
23 "junction",
24 "lane",
25 "lake",
26 "mount",
27 "mountain",
28 "parkway",
29 "place",
30 "plaza",
31 "port",
32 "river",
33 "road",
34 "square",
35 "street",
36 "terrace",
37 "trail",
38 "turnpike",
39 "way",
40 "aly",
41 "ave",
42 "blvd",
43 "brg",
44 "cyn",
45 "ctr",
46 "cir",
47 "ct",
48 "cres",
49 "dr",
50 "expy",
51 "fwy",
52 "hwy",
53 "hl",
54 "jct",
55 "ln",
56 "lk",
57 "loop",
58 "mt",
59 "mtn",
60 "park",
61 "pkwy",
62 "pl",
63 "plz",
64 "prt",
65 "riv",
66 "rd",
67 "rte",
68 "sq",
69 "st",
70 "ter",
71 "trl",
72 "tpke",
73}