You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With c7122d5, we can no longer skip importing OSM into the address.db. We have custom countrywide.csv and polylines.0sv files and were able to obtain the address.db and street.db database files without any need for an OSM data file. Can we add configuration to pelias.json so interpolation would know what inputs to skip?
Current kludge is to provide an empty netherlands-latest.osm.pbf file
The text was updated successfully, but these errors were encountered:
Agh I didn't consider that case, I suspect that having the configuration in pelias.json would be hard to pass down to this bash script without considerable refactoring.
If I recall correctly, the intention of the fatal errors at the top of that bash script was to indicate to the user that the required files were missing, to save them the time & heartache of running the whole build before catching their error.
I wonder if we could change those fatal errors to warnings instead, and do nothing when no file is found.
From your suggestion we'd just drop the exit 1. The user would still receive feedback about the missing files, but the build would proceed: if the file is empty (the kludge we use now) or does not exist (our way of working before c7122d5) the build.sh script runs ok.
With c7122d5, we can no longer skip importing OSM into the address.db. We have custom
countrywide.csv
andpolylines.0sv
files and were able to obtain theaddress.db
andstreet.db
database files without any need for an OSM data file. Can we add configuration topelias.json
sointerpolation
would know what inputs to skip?Current kludge is to provide an empty
netherlands-latest.osm.pbf
fileThe text was updated successfully, but these errors were encountered: