aboutsummaryrefslogtreecommitdiff
path: root/lib/roadSuffixMap.js
blob: 4dbad22d98ca9197d019dba2c6f6a86c24392755 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Table 13 in Vicmap Address Product Spec
module.exports = {
  N: 'North',
  S: 'South',
  E: 'East',
  W: 'West',
  LR: 'Lower',
  UP: 'Upper',
  NE: 'North East',
  NW: 'North West',
  SE: 'South East',
  SW: 'South West',
  CN: 'Central',
  EX: 'Extension',
  ML: 'Mall',
  OT: 'Outer',
  IN: 'Inner',
  OF: 'Off',
  ON: 'On',
  DV: 'Deviation',
  BR: 'Branch'
}