-
Notifications
You must be signed in to change notification settings - Fork 3
/
AddrSuffixTable.js
65 lines (64 loc) · 1.35 KB
/
AddrSuffixTable.js
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
/**
* AddrSuffixTable.js
* Table of address abbreviations and their full names.
*
* Made for TOM Makeathon at Northwestern University
*
* @license MIT license
* @version 1.0
* @author Daniel Bednarczyk, Darcy Green (Need Knower), Joe Cummings, Julie Davies, Megan Reid, Wong Song Wei
* @updated 2017-05-16
* @link https://makeathon-nu.github.io/Street-Nav/
*
*
*/
var m_aryAddrSuffixTable = [
["ave", "Avenue"],
["av", "Avenue"],
["bch", "Beach"],
["bnd", "Bend"],
["blf", "Bluff"],
["blvd", "Boulevard"],
["br", "Branch"],
["cyn", "Canyon"],
["ctr", "Center"],
["cir", "Circle"],
["clf", "Cliff"],
["ct", "Court"],
["xing", "Crossing"],
["dr", "Drive"],
["grv", "Grove"],
["jct", "Junction"],
["ln", "Lane"],
["mt", "Mount"],
["mtn", "Mountain"],
["opas", "Overpass"],
["pkwy", "Parkway"],
["pl", "Place"],
["plz", "Plaza"],
["pt", "Point"],
["prt", "Port"],
["rdg", "Ridge"],
["rd", "Road"],
["spg", "Spring"],
["sq", "Square"],
["sta", "Station"],
["st", "Street"],
["ter", "Terrace"],
["trwy", "Throughway"],
["trl", "Trail"],
["tunl", "Tunnel"],
["tpke", "Turnpike"],
["upas", "Underpass"],
["vly", "Valley"],
["vw", "View"],
["vlg", "Village"],
["n", "North"],
["ne", "Northeast"],
["nw", "Northwest"],
["e", "East"],
["w", "West"],
["s", "South"],
["sw", "Southwest"],
["se", "Southeast"],
];