Good day I've installed Nominatim and am now trying to to import my country using the command:
It starts off with NOTICE: table "place" does not exist, Skipping. Afterwards, it seems to work fine until it tried to get data from the "place" table (which does not exist). The error is: relation place does not exist. Why does the place table not exist? Shouldn't all required tables be created by the setup.php file? Or am I missing something? EDIT: I should point out that I used osmconvert to merge two regions. I'm now trying to import only one of them and while it still gives me the same notice, it seems to be importing the data. Maybe something went wrong with the osmconvert process. Will update here if the one region actually imports successfully and maybe just import the second with update.php (although I think its slower). asked 02 Nov '18, 10:16 wesleyjmertz |
You can ignore the NOTICE output. In SQL Nominatim wants to replace tables/functions and postgresql prints this if it previously doesn't exist (expected during a first installation). We haven't found a way to disable those yet. Place table not existing after the setup.php run would mean no suitable places to import were found in the input data, maybe the region is too small.