From 0ae992506b69fbf56008972757edac8201d1f455 Mon Sep 17 00:00:00 2001 From: Andrew Harvey Date: Thu, 10 Jun 2021 10:27:28 +1000 Subject: process from start to end --- bin/candidates.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bin/candidates.js') diff --git a/bin/candidates.js b/bin/candidates.js index e350f6f..6e2e7b0 100755 --- a/bin/candidates.js +++ b/bin/candidates.js @@ -145,7 +145,7 @@ function outputCandidates() { } // first pass to index by geometry -console.log('Step 1/X: Reading suburbs') +console.log('Step 1/4: Reading suburbs') pipeline( fs.createReadStream(suburbsFile), ndjson.parse(), @@ -155,13 +155,13 @@ pipeline( console.log(err) process.exit(1) } else { - console.log('Step 2/X: Creating index of Suburbs') + console.log('Step 2/4: Creating index of Suburbs') lookupSuburbs = new PolygonLookup({ type: 'FeatureCollection', features: suburbs }) - console.log('Step 3/X: noOSMAddressWithinBlock') + console.log('Step 3/4: noOSMAddressWithinBlock') pipeline( fs.createReadStream(path.join(conflatePath, 'noOSMAddressWithinBlock.geojson')), ndjson.parse(), @@ -172,7 +172,7 @@ pipeline( process.exit(1) } else { - console.log('Step 4/X: noExactMatch') + console.log('Step 4/4: noExactMatch') pipeline( fs.createReadStream(path.join(conflatePath, 'noExactMatch.geojson')), ndjson.parse(), -- cgit v1.2.3