aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/toOSM.js18
-rw-r--r--package.json2
2 files changed, 18 insertions, 2 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 = {
diff --git a/package.json b/package.json
index a60a9ae..5ac349c 100644
--- a/package.json
+++ b/package.json
@@ -27,6 +27,6 @@
"yargs": "^17.0.1"
},
"engines": {
- "node": ">=12.3"
+ "node": ">=15.0"
}
}