diff options
| author | Andrew Harvey <andrew@alantgeo.com.au> | 2022-05-21 16:26:05 +1000 |
|---|---|---|
| committer | Andrew Harvey <andrew@alantgeo.com.au> | 2022-05-21 16:26:05 +1000 |
| commit | 48ae1c8e24b9d26142de577ee32334e4cdfe7b10 (patch) | |
| tree | 244a94b1f3d889d9aab9360b07565bb40cbec900 | |
| parent | 6dca11565d032c62724339470bb8a1cc04a8d32e (diff) | |
fix complex/building conflation
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -218,11 +218,11 @@ convertConflationResultsToFGB: ogr2ogr -f FlatGeobuf dist/conflate/fuzzyStreetMatchesMultiple.fgb dist/conflate/fuzzyStreetMatchesMultiple.geojson dist/vicmap-complex-conflation: dist/vicmap-complex.geojson - mkdirp -p $@ + mkdir -p $@ ./bin/complex.js $< data/victoria-named-features.osm.geojson $@ dist/vicmap-building-conflation: dist/vicmap-building.geojson - mkdirp -p $@ + mkdir -p $@ ./bin/building.js $< data/victoria-named-features.osm.geojson $@ # extract admin_level=9 from OSM |
