Coverage for blind_charging/locale/const.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v6.5.0, created at 2023-02-17 20:36 +0000

1INDICATOR_POS_PREFIX = "prefix" 

2INDICATOR_POS_SUFFIX = "suffix" 

3 

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 "loop", 

27 "mount", 

28 "mountain", 

29 "parkway", 

30 "place", 

31 "plaza", 

32 "port", 

33 "river", 

34 "road", 

35 "square", 

36 "street", 

37 "terrace", 

38 "trail", 

39 "turnpike", 

40 "way", 

41 "aly", 

42 "ave", 

43 "blvd", 

44 "brg", 

45 "cyn", 

46 "ctr", 

47 "cir", 

48 "ct", 

49 "cres", 

50 "dr", 

51 "expy", 

52 "fwy", 

53 "hwy", 

54 "hl", 

55 "jct", 

56 "ln", 

57 "lk", 

58 "loop", 

59 "mt", 

60 "mtn", 

61 "park", 

62 "pkwy", 

63 "pl", 

64 "plz", 

65 "prt", 

66 "riv", 

67 "rd", 

68 "rte", 

69 "sq", 

70 "st", 

71 "ter", 

72 "trl", 

73 "tpke", 

74 "way", 

75}