diff options
author | Andrew Harvey <andrew@alantgeo.com.au> | 2021-06-08 16:33:11 +1000 |
---|---|---|
committer | Andrew Harvey <andrew@alantgeo.com.au> | 2021-06-08 16:33:11 +1000 |
commit | 5a92c566376ce7105dac609e7a1beae3e5100232 (patch) | |
tree | fbc863148274e0fe9075a7f9b972be3842762617 /bin | |
parent | 41de7f13e6d331341443b2d846d6d44d06387d91 (diff) |
exclude addr:suburb, addr:postcode, addr:state due to some opposition from the local community
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/vicmap2osm.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/vicmap2osm.js b/bin/vicmap2osm.js index 97139ab..dfd1eeb 100755 --- a/bin/vicmap2osm.js +++ b/bin/vicmap2osm.js @@ -50,7 +50,9 @@ const transform = new Transform({ // convert source Feature into a Feature per the OSM schema const osm = toOSM(feature, { - tracing: argv.tracing + tracing: argv.tracing, + /* omit addr:suburb, addr:postcode, addr:state */ + includeDerivableProperties: false }) // some addresses we skip importing into OSM, see README.md#omitted-addresses |