diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -196,9 +196,9 @@ summariseBlocksByOSMAddr: dist/blocksByOSMAddr.geojson ogrinfo -dialect sqlite -sql 'select count(*), NUMPOINTS = 0 from blocksByOSMAddr group by (NUMPOINTS = 0)' $< # conflate processed vicmap data with osm data -dist/conflate: +dist/conflate: dist/vicmap-osm-uniq-flats-withinrange.geojson data/victoria-addr.osm.geojson dist/blocksByOSMAddr.geojson mkdir -p $@ - ./bin/conflate.js dist/vicmap-osm-uniq-flats-withinrange.geojson data/victoria-addr.osm.geojson dist/blocksByOSMAddr.geojson $@ + ./bin/conflate.js $^ $@ ./bin/mrCoopDiff.js $@/mr_exactMatchSetFlats.geojson $@/mr_exactMatch.changes.json dist/unitFromNumber.osc: dist/conflate/mr_explodeUnitFromNumber.geojson @@ -215,13 +215,13 @@ convertConflationResultsToFGB: ogr2ogr -f FlatGeobuf dist/conflate/fuzzyStreetMatchesSingle.fgb dist/conflate/fuzzyStreetMatchesSingle.geojson ogr2ogr -f FlatGeobuf dist/conflate/fuzzyStreetMatchesMultiple.fgb dist/conflate/fuzzyStreetMatchesMultiple.geojson -dist/vicmap-complex-conflation: dist/vicmap-complex.geojson +dist/vicmap-complex-conflation: dist/vicmap-complex.geojson data/victoria-named-features.osm.geojson mkdir -p $@ - ./bin/complex.js $< data/victoria-named-features.osm.geojson $@ + ./bin/complex.js $^ $@ -dist/vicmap-building-conflation: dist/vicmap-building.geojson +dist/vicmap-building-conflation: dist/vicmap-building.geojson data/victoria-named-features.osm.geojson mkdir -p $@ - ./bin/building.js $< data/victoria-named-features.osm.geojson $@ + ./bin/building.js $^ $@ # extract admin_level=9 from OSM data/victoria-admin.osm.pbf: data/victoria.osm.pbf |