-you also need to enable these key phrases like this:
-
- ./utils/specialphrases.php --wiki-import > specialphrases.sql
- psql -d nominatim -f specialphrases.sql
-
-Note that this command downloads the phrases from the wiki link above. You
-need internet access for the step.
-
-
-## Installing Tiger housenumber data for the US
-
-Nominatim is able to use the official [TIGER](https://www.census.gov/geographies/mapping-files/time-series/geo/tiger-line-file.html)
-address set to complement the OSM house number data in the US. You can add
-TIGER data to your own Nominatim instance by following these steps. The
-entire US adds about 10GB to your database.
-
- 1. Get preprocessed TIGER 2019 data and unpack it into the
- data directory in your Nominatim sources:
-
- cd Nominatim/data
- wget https://nominatim.org/data/tiger2019-nominatim-preprocessed.tar.gz
- tar xf tiger2019-nominatim-preprocessed.tar.gz
-
- `data-source/overview.md` explains how the data got preprocessed.
-
- 2. Import the data into your Nominatim database:
-
- ./utils/setup.php --import-tiger-data
-
- 3. Enable use of the Tiger data in your `settings/local.php` by adding:
-
- @define('CONST_Use_US_Tiger_Data', true);
-
- 4. Apply the new settings: