mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-03-09 03:24:06 +00:00
add geometry details for postcode area output
This commit is contained in:
@@ -610,6 +610,10 @@ class PostcodeSearch(AbstractSearch):
|
|||||||
.where(p.c.country_code == row.country_code)\
|
.where(p.c.country_code == row.country_code)\
|
||||||
.where(p.c.postcode == row.postcode)\
|
.where(p.c.postcode == row.postcode)\
|
||||||
.limit(1)
|
.limit(1)
|
||||||
|
|
||||||
|
if details.geometry_output:
|
||||||
|
placex_sql = _add_geometry_columns(placex_sql, p.c.geometry, details)
|
||||||
|
|
||||||
for prow in await conn.execute(placex_sql, _details_to_bind_params(details)):
|
for prow in await conn.execute(placex_sql, _details_to_bind_params(details)):
|
||||||
result = nres.create_from_placex_row(prow, nres.SearchResult)
|
result = nres.create_from_placex_row(prow, nres.SearchResult)
|
||||||
break
|
break
|
||||||
|
|||||||
Reference in New Issue
Block a user