diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/toOSM.js | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/lib/toOSM.js b/lib/toOSM.js index bd3e1e4..c928cfa 100644 --- a/lib/toOSM.js +++ b/lib/toOSM.js @@ -64,11 +64,27 @@ const emptyNames = [ 'NOT NAMED' ] +// Table 13 in Vicmap Address Product Spec const roadSuffixMap = { N: 'North', S: 'South', E: 'East', - W: 'West' + 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' } const suburbMap = { |