diff options
-rw-r--r-- | .gitlab-ci.yml | 1 | ||||
-rw-r--r-- | Makefile | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dbed9f3..1faf86f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -173,6 +173,7 @@ build compareSuburb: - time make dist/vicmap-osm.geojson - time make dist/vicmapSuburbDiffersWithOSM.geojson - rm -f dist/vicmap-osm.geojson + - make printDifferentSuburbs when: manual artifacts: name: "build compareSuburb" @@ -162,3 +162,6 @@ data/victoria-admin-level10.osm.geojson: data/victoria-admin-level10.osm.pbf dist/vicmapSuburbDiffersWithOSM.geojson: dist/vicmap-osm.geojson data/victoria-admin-level10.osm.geojson ./bin/compareSuburb.geojson $^ $@ + +printDifferentSuburbs: dist/vicmapSuburbDiffersWithOSM.geojson + ogr2ogr -f CSV -select '_osmSuburb,addr:suburb' /vsistdout/ $< | sort | uniq |