diff options
author | Andrew Harvey <andrew@alantgeo.com.au> | 2021-06-09 13:58:35 +1000 |
---|---|---|
committer | Andrew Harvey <andrew@alantgeo.com.au> | 2021-06-09 13:58:35 +1000 |
commit | e124e7e8b7ef52e8f04d55deaecd8e576b7ad637 (patch) | |
tree | 309dba209b7f85778b7cae12ea4058616f83c725 /Makefile | |
parent | dd5375d7293de71db73c182beea17b776be5a30b (diff) |
minor changes to compareSuburb
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -200,9 +200,11 @@ data/victoria-admin-level10.osm.fgb: data/victoria-admin-level10.osm.geojson dist/vicmapSuburbDiffersWithOSM.geojson: dist/vicmap-osm-with-suburb.geojson data/victoria-admin-level10.osm.geojson ./bin/compareSuburb.js $^ $@ dist/suburbsWithPostcodeCounts.geojson + wc -l $@ printDifferentSuburbs: dist/vicmapSuburbDiffersWithOSM.geojson - ogr2ogr -f CSV -select '_osmSuburb,addr:suburb' /vsistdout/ $< | sort | uniq + echo "OSM Suburb,Vicmap Suburb" + ogr2ogr -f CSV -select '_osmSuburb,addr:suburb' /vsistdout/ $< | tail -n+1 | sort | uniq dist/candidates: data/victoria-admin-level10.osm.geojson dist/conflate mkdir -p $@ |