]> git.openstreetmap.org Git - nominatim.git/blobdiff - nominatim/api/reverse.py
move get_addressdata() implementation to Python
[nominatim.git] / nominatim / api / reverse.py
index 382951082a4d75082fdb0d2cf89fbca3045b5f14..d46733f0d950fe9eb8a051f3e21e6b916dec14de 100644 (file)
@@ -57,6 +57,7 @@ def _select_from_placex(t: SaFromClause, use_wkt: bool = True) -> SaSelect:
                      t.c.importance, t.c.wikipedia,
                      t.c.parent_place_id, t.c.rank_address, t.c.rank_search,
                      centroid,
+                     t.c.linked_place_id, t.c.admin_level,
                      distance.label('distance'),
                      t.c.geometry.ST_Expand(0).label('bbox'))