diff options
author | Andrew Harvey <andrew@alantgeo.com.au> | 2021-07-05 23:41:53 +1000 |
---|---|---|
committer | Andrew Harvey <andrew@alantgeo.com.au> | 2021-07-05 23:41:53 +1000 |
commit | 64a77927ab106a8dffc8d48444dea4cccbc405da (patch) | |
tree | 4339d5d0fdd050aa04c0870d0e2353656701d14c | |
parent | 9e3708dca0c07765ea047846fac0015c067308a2 (diff) |
more explanatory message
-rwxr-xr-x | bin/reduceOverlap.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reduceOverlap.js b/bin/reduceOverlap.js index 695d5f6..cc73bed 100755 --- a/bin/reduceOverlap.js +++ b/bin/reduceOverlap.js @@ -153,7 +153,7 @@ const reduce = new Transform({ const nonUnitFeatures = featureGroup.filter(f => (!('addr:unit' in f.properties))) if (nonUnitFeatures.length > 1) { // multiple non-unit features shouldn't actually occur - console.log("Multiple non-unit features, this shouldn't occur.", nonUnitFeatures) + console.log("Multiple non-unit features, this shouldn't occur, because reduceDuplicates should have address this already.", nonUnitFeatures) process.exit(1) } else { // a single non-unit feature exists |