Nominatim/docs/develop/parenting-flow.plantuml

32 lines
585 B
Plaintext
Raw Normal View History

2021-11-01 13:04:03 +03:00
@startuml
skinparam monochrome true
start
if (has 'addr:street'?) then (yes)
if (street with that name\n nearby?) then (yes)
:**Use closest street**
**with same name**;
kill
else (no)
:** Use closest**\n**street**;
kill
endif
elseif (has 'addr:place'?) then (yes)
if (place with that name\n nearby?) then (yes)
:**Use closest place**
**with same name**;
kill
else (no)
2024-02-26 20:13:30 +03:00
:add addr:place to address;
2021-11-01 13:04:03 +03:00
:**Use closest place**\n**rank 16 to 25**;
kill
endif
else (otherwise)
:**Use closest**\n**street**;
kill
endif
@enduml