mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-12-27 23:15:12 +03:00
36 lines
671 B
Plaintext
36 lines
671 B
Plaintext
|
@startuml
|
||
|
skinparam monochrome true
|
||
|
skinparam ObjectFontStyle bold
|
||
|
|
||
|
map search_name_X {
|
||
|
place_id => BIGINT
|
||
|
address_rank => SMALLINT
|
||
|
name_vector => INT[]
|
||
|
centroid => GEOMETRY
|
||
|
}
|
||
|
|
||
|
map location_area_large_X {
|
||
|
place_id => BIGINT
|
||
|
keywords => INT[]
|
||
|
partition => SMALLINT
|
||
|
rank_search => SMALLINT
|
||
|
rank_address => SMALLINT
|
||
|
country_code => VARCHR(2)
|
||
|
isguess => BOOLEAN
|
||
|
postcode => TEXT
|
||
|
centroid => POINT
|
||
|
geometry => GEOMETRY
|
||
|
}
|
||
|
|
||
|
map location_road_X {
|
||
|
place_id => BIGINT
|
||
|
partition => SMALLINT
|
||
|
country_code => VARCHR(2)
|
||
|
geometry => GEOMETRY
|
||
|
}
|
||
|
|
||
|
search_name_X -[hidden]> location_area_large_X
|
||
|
location_area_large_X -[hidden]> location_road_X
|
||
|
|
||
|
@enduml
|