]> git.openstreetmap.org Git - nominatim.git/commit
compute address parts for rank 30 objects on the fly
authorSarah Hoffmann <lonvia@denofr.de>
Tue, 1 Dec 2020 10:58:25 +0000 (11:58 +0100)
committerSarah Hoffmann <lonvia@denofr.de>
Tue, 1 Dec 2020 10:58:25 +0000 (11:58 +0100)
commit7295cad71555b8890979eaaee06c77d49a927f54
treeb16e0faac278c95bb6823cb0e64bbfd0bdee05b9
parentff85da0a31874050c32712d9bb1d1a5592c50a81
compute address parts for rank 30 objects on the fly

Rank 30 objects usually use the address parts of their parent.
When the parent has address parts that are areas but not marked
as isaddress, then the parent might go through multiple administrative
areas. In that case recheck if the right area has been choosen
for the object in question instead of relying on isaddress.
Note that we really only have to do the recomputation in the
case of 'isarea = True and isaddress = False' which hopefully
keeps the number of additional geometric operations we have to do
to a minimum.

There is one more special case to be taken into account here: a
street may go through two administrative areas and a house along
that street is placed in one of the area while the addr:* tags
says it belongs to the other. In that case we must not switch
the isaddress to the one it is situated. To avoid that recheck
the address names against the name of the ara. That is not perfect
but should cover most cases.

Fixes #328.
sql/functions/address_lookup.sql
test/bdd/db/import/addressing.feature