diff options
author | Andrew Harvey <andrew@alantgeo.com.au> | 2021-06-10 10:27:28 +1000 |
---|---|---|
committer | Andrew Harvey <andrew@alantgeo.com.au> | 2021-06-10 10:27:28 +1000 |
commit | 0ae992506b69fbf56008972757edac8201d1f455 (patch) | |
tree | d89a48c1d304ba27fbfe419249f119f6f5af988f /Makefile | |
parent | 5b1077017e4b32443f18ba2395d7884af97e7dab (diff) |
process from start to end
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -191,6 +191,14 @@ convertConflationResultsToFGB: ogr2ogr -f FlatGeobuf dist/conflate/noExactMatch.fgb dist/conflate/noExactMatch.geojson ogr2ogr -f FlatGeobuf dist/conflate/noOSMAddressWithinBlock.fgb dist/conflate/noOSMAddressWithinBlock.geojson +dist/vicmap-complex-conflation: dist/vicmap-complex.geojson + mkdirp -p $@ + ./bin/complex.js $< data/victoria-named-features.osm.geojson $@ + +dist/vicmap-building-conflation: dist/vicmap-building.geojson + mkdirp -p $@ + ./bin/building.js $< data/victoria-named-features.osm.geojson $@ + # extract admin_level=10 from OSM data/victoria-admin.osm.pbf: data/victoria.osm.pbf osmium tags-filter --remove-tags --output=$@ $< r/boundary=administrative @@ -216,10 +224,3 @@ dist/candidates: data/victoria-admin-level10.osm.geojson dist/conflate mkdir -p $@ ./bin/candidates.js $^ $@ -dist/vicmap-complex-conflation: dist/vicmap-complex.geojson - mkdirp -p $@ - ./bin/complex.js $< data/victoria-named-features.osm.geojson $@ - -dist/vicmap-building-conflation: dist/vicmap-building.geojson - mkdirp -p $@ - ./bin/building.js $< data/victoria-named-features.osm.geojson $@ |