diff options
-rwxr-xr-x | bin/conflate.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/conflate.js b/bin/conflate.js index ca54bff..225dd89 100755 --- a/bin/conflate.js +++ b/bin/conflate.js @@ -188,8 +188,7 @@ const conflate = new Transform({ if (osmPoly) { // address found within an existing OSM address polygon if (argv.debug) { - feature.properties._osmtype = osmPoly.properties['@type'] - feature.properties._osmid = osmPoly.properties['@id'] + feature.properties._osm = `${osmPoly.properties['@type']}/${osmPoly.properties['@id']}` } outputStreams.withinExistingOSMAddressPoly.write(feature) |