Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How many rankings of indexing are there in Nominatim API

We are currently installing Nominatim API and it is on Rank 30 (indexing), has been indexing for about 4 days now, does anyone know how many rankings there are to index?

like image 741
williamsandonz Avatar asked Dec 05 '22 05:12

williamsandonz


1 Answers

There are 30.

0 means the highest priority, 30 the lowest.

Here is the full table of rank meaning.

And here is really good explanation of meaning of those numbers next to ranks.

And from my experience ranks 26 (roads/streets) and 30 ("other") took the longest to load.

It's worth noting that if by any chance installation got interrupted at this point (when processing ranks), it can be safely resumed with:

./utils/setup.php --index --create-search-indices

And if the rank is 26 or higher, then also

--index-noanalyse

can be added.

like image 84
tlegutko Avatar answered Dec 27 '22 02:12

tlegutko