.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
searx.engines.openstreetmap Namespace Reference

Functions

 value_to_https_link (value)
 
 value_to_website_link (value)
 
 value_wikipedia_link (value)
 
 value_with_prefix (prefix, value)
 
 request (query, params)
 
EngineResults response (resp)
 
 get_wikipedia_image (raw_value)
 
 fetch_wikidata (nominatim_json, user_language)
 
 get_title_address (result)
 
 get_url_osm_geojson (result)
 
 get_img_src (result)
 
 get_links (result, user_language)
 
 get_data (result, user_language, ignore_keys)
 
 get_key_rank (k)
 
 get_label (labels, lang)
 
 get_tag_label (tag_category, tag_name, lang)
 
 get_key_label (key_name, lang)
 

Variables

dict about
 
list categories = ['map']
 
bool paging = False
 
bool language_support = True
 
bool send_accept_language_header = True
 
str base_url = 'https://nominatim.openstreetmap.org/'
 
str search_string = 'search?{query}&polygon_geojson=1&format=jsonv2&addressdetails=1&extratags=1&dedupe=1'
 
str result_id_url = 'https://openstreetmap.org/{osm_type}/{osm_id}'
 
str result_lat_lon_url = 'https://www.openstreetmap.org/?mlat={lat}&mlon={lon}&zoom={zoom}&layers=M'
 
str route_url = 'https://graphhopper.com/maps'
 
str wikidata_image_sparql
 
dict VALUE_TO_LINK
 
list KEY_ORDER
 
dict KEY_RANKS = {k: i for i, k in enumerate(KEY_ORDER)}
 

Detailed Description

OpenStreetMap (Map)

Function Documentation

◆ fetch_wikidata()

searx.engines.openstreetmap.fetch_wikidata ( nominatim_json,
user_language )
Update nominatim_json using the result of an unique to wikidata

For result in nominatim_json:
    If result['extratags']['wikidata'] or r['extratags']['wikidata link']:
        Set result['wikidata'] to { 'image': ..., 'image_sign':..., 'image_symbal':... }
        Set result['extratags']['wikipedia'] if not defined
        Set result['extratags']['contact:website'] if not defined

Definition at line 214 of file openstreetmap.py.

214def fetch_wikidata(nominatim_json, user_language):
215 """Update nominatim_json using the result of an unique to wikidata
216
217 For result in nominatim_json:
218 If result['extratags']['wikidata'] or r['extratags']['wikidata link']:
219 Set result['wikidata'] to { 'image': ..., 'image_sign':..., 'image_symbal':... }
220 Set result['extratags']['wikipedia'] if not defined
221 Set result['extratags']['contact:website'] if not defined
222 """
223 wikidata_ids = []
224 wd_to_results = {}
225 for result in nominatim_json:
226 extratags = result['extratags']
227 # ignore brand:wikidata
228 wd_id = extratags.get('wikidata', extratags.get('wikidata link'))
229 if wd_id and wd_id not in wikidata_ids:
230 wikidata_ids.append('wd:' + wd_id)
231 wd_to_results.setdefault(wd_id, []).append(result)
232
233 if wikidata_ids:
234 user_language = 'en' if user_language == 'all' else user_language.split('-')[0]
235 wikidata_ids_str = " ".join(wikidata_ids)
236 query = wikidata_image_sparql.replace('%WIKIDATA_IDS%', sparql_string_escape(wikidata_ids_str)).replace(
237 '%LANGUAGE%', sparql_string_escape(user_language)
238 )
239 wikidata_json = send_wikidata_query(query)
240 for wd_result in wikidata_json.get('results', {}).get('bindings', {}):
241 wd_id = wd_result['item']['value'].replace('http://www.wikidata.org/entity/', '')
242 for result in wd_to_results.get(wd_id, []):
243 result['wikidata'] = {
244 'itemLabel': wd_result['itemLabel']['value'],
245 'image': get_wikipedia_image(wd_result.get('image', {}).get('value')),
246 'image_sign': get_wikipedia_image(wd_result.get('sign', {}).get('value')),
247 'image_symbol': get_wikipedia_image(wd_result.get('symbol', {}).get('value')),
248 }
249 # overwrite wikipedia link
250 wikipedia_name = wd_result.get('wikipediaName', {}).get('value')
251 if wikipedia_name:
252 result['extratags']['wikipedia'] = user_language + ':' + wikipedia_name
253 # get website if not already defined
254 website = wd_result.get('website', {}).get('value')
255 if (
256 website
257 and not result['extratags'].get('contact:website')
258 and not result['extratags'].get('website')
259 ):
260 result['extratags']['contact:website'] = website
261
262

References get_wikipedia_image().

Referenced by response().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ get_data()

searx.engines.openstreetmap.get_data ( result,
user_language,
ignore_keys )
Return key, value of result['extratags']

Must be call after get_links

Note: the values are not translated

Definition at line 378 of file openstreetmap.py.

378def get_data(result, user_language, ignore_keys):
379 """Return key, value of result['extratags']
380
381 Must be call after get_links
382
383 Note: the values are not translated
384 """
385 data = []
386 for k, v in result['extratags'].items():
387 if k in ignore_keys:
388 continue
389 if get_key_rank(k) is None:
390 continue
391 k_label = get_key_label(k, user_language)
392 if k_label:
393 data.append(
394 {
395 'label': k_label,
396 'key': k,
397 'value': v,
398 }
399 )
400 data.sort(key=lambda entry: (get_key_rank(entry['key']), entry['label']))
401 return data
402
403

References get_key_label(), and get_key_rank().

Referenced by response().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ get_img_src()

searx.engines.openstreetmap.get_img_src ( result)
Get image URL from either wikidata or r['extratags']

Definition at line 329 of file openstreetmap.py.

329def get_img_src(result):
330 """Get image URL from either wikidata or r['extratags']"""
331 # wikidata
332 img_src = None
333 if 'wikidata' in result:
334 img_src = result['wikidata']['image']
335 if not img_src:
336 img_src = result['wikidata']['image_symbol']
337 if not img_src:
338 img_src = result['wikidata']['image_sign']
339
340 # img_src
341 extratags = result['extratags']
342 if not img_src and extratags.get('image'):
343 img_src = extratags['image']
344 del extratags['image']
345 if not img_src and extratags.get('wikimedia_commons'):
346 img_src = get_external_url('wikimedia_image', extratags['wikimedia_commons'])
347 del extratags['wikimedia_commons']
348
349 return img_src
350
351

Referenced by response().

+ Here is the caller graph for this function:

◆ get_key_label()

searx.engines.openstreetmap.get_key_label ( key_name,
lang )
Get key label from OSM_KEYS_TAGS

Definition at line 441 of file openstreetmap.py.

441def get_key_label(key_name, lang):
442 """Get key label from OSM_KEYS_TAGS"""
443 if key_name.startswith('currency:'):
444 # currency:EUR --> get the name from the CURRENCIES variable
445 # see https://wiki.openstreetmap.org/wiki/Key%3Acurrency
446 # and for example https://taginfo.openstreetmap.org/keys/currency:EUR#values
447 # but there is also currency=EUR (currently not handled)
448 # https://taginfo.openstreetmap.org/keys/currency#values
449 currency = key_name.split(':')
450 if len(currency) > 1:
451 o = CURRENCIES['iso4217'].get(currency[1])
452 if o:
453 return get_label(o, lang).lower()
454 return currency[1]
455
456 labels = OSM_KEYS_TAGS['keys']
457 for k in key_name.split(':') + ['*']:
458 labels = labels.get(k)
459 if labels is None:
460 return None
461 return get_label(labels, lang)

References get_label().

Referenced by get_data(), get_links(), and response().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ get_key_rank()

searx.engines.openstreetmap.get_key_rank ( k)
Get OSM key rank

The rank defines in which order the key are displayed in the HTML result

Definition at line 404 of file openstreetmap.py.

404def get_key_rank(k):
405 """Get OSM key rank
406
407 The rank defines in which order the key are displayed in the HTML result
408 """
409 key_rank = KEY_RANKS.get(k)
410 if key_rank is None:
411 # "payment:*" in KEY_ORDER matches "payment:cash", "payment:debit card", etc...
412 key_rank = KEY_RANKS.get(k.split(':')[0] + ':*')
413 return key_rank
414
415

Referenced by get_data().

+ Here is the caller graph for this function:

◆ get_label()

searx.engines.openstreetmap.get_label ( labels,
lang )
Get label from labels in OSM_KEYS_TAGS

in OSM_KEYS_TAGS, labels have key == '*'

Definition at line 416 of file openstreetmap.py.

416def get_label(labels, lang):
417 """Get label from labels in OSM_KEYS_TAGS
418
419 in OSM_KEYS_TAGS, labels have key == '*'
420 """
421 tag_label = labels.get(lang.lower())
422 if tag_label is None:
423 # example: if 'zh-hk' is not found, check 'zh'
424 tag_label = labels.get(lang.split('-')[0])
425 if tag_label is None and lang != 'en':
426 # example: if 'zh' is not found, check 'en'
427 tag_label = labels.get('en')
428 if tag_label is None and len(labels.values()) > 0:
429 # example: if still not found, use the first entry
430 tag_label = labels.values()[0]
431 return tag_label
432
433

Referenced by get_key_label(), and get_tag_label().

+ Here is the caller graph for this function:

◆ get_links()

searx.engines.openstreetmap.get_links ( result,
user_language )
Return links from result['extratags']

Definition at line 352 of file openstreetmap.py.

352def get_links(result, user_language):
353 """Return links from result['extratags']"""
354 links = []
355 link_keys = set()
356 extratags = result['extratags']
357 if not extratags:
358 # minor optimization : no need to check VALUE_TO_LINK if extratags is empty
359 return links, link_keys
360 for k, mapping_function in VALUE_TO_LINK.items():
361 raw_value = extratags.get(k)
362 if not raw_value:
363 continue
364 url, url_label = mapping_function(raw_value)
365 if url.startswith('https://wikidata.org'):
366 url_label = result.get('wikidata', {}).get('itemLabel') or url_label
367 links.append(
368 {
369 'label': get_key_label(k, user_language),
370 'url': url,
371 'url_label': url_label,
372 }
373 )
374 link_keys.add(k)
375 return links, link_keys
376
377

References get_key_label().

Referenced by response().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ get_tag_label()

searx.engines.openstreetmap.get_tag_label ( tag_category,
tag_name,
lang )
Get tag label from OSM_KEYS_TAGS

Definition at line 434 of file openstreetmap.py.

434def get_tag_label(tag_category, tag_name, lang):
435 """Get tag label from OSM_KEYS_TAGS"""
436 tag_name = '' if tag_name is None else tag_name
437 tag_labels = OSM_KEYS_TAGS['tags'].get(tag_category, {}).get(tag_name, {})
438 return get_label(tag_labels, lang)
439
440

References get_label().

Referenced by response().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ get_title_address()

searx.engines.openstreetmap.get_title_address ( result)
Return title and address

title may be None

Definition at line 263 of file openstreetmap.py.

263def get_title_address(result):
264 """Return title and address
265
266 title may be None
267 """
268 address_raw = result.get('address')
269 address_name = None
270 address = {}
271
272 # get name
273 if (
274 result['category'] == 'amenity'
275 or result['category'] == 'shop'
276 or result['category'] == 'tourism'
277 or result['category'] == 'leisure'
278 ):
279 if address_raw.get('address29'):
280 # https://github.com/osm-search/Nominatim/issues/1662
281 address_name = address_raw.get('address29')
282 else:
283 address_name = address_raw.get(result['category'])
284 elif result['type'] in address_raw:
285 address_name = address_raw.get(result['type'])
286
287 # add rest of adressdata, if something is already found
288 if address_name:
289 title = address_name
290 address.update(
291 {
292 'name': address_name,
293 'house_number': address_raw.get('house_number'),
294 'road': address_raw.get('road'),
295 'locality': address_raw.get(
296 'city', address_raw.get('town', address_raw.get('village')) # noqa
297 ), # noqa
298 'postcode': address_raw.get('postcode'),
299 'country': address_raw.get('country'),
300 'country_code': address_raw.get('country_code'),
301 }
302 )
303 else:
304 title = result.get('display_name')
305
306 return title, address
307
308

Referenced by response().

+ Here is the caller graph for this function:

◆ get_url_osm_geojson()

searx.engines.openstreetmap.get_url_osm_geojson ( result)
Get url, osm and geojson

Definition at line 309 of file openstreetmap.py.

309def get_url_osm_geojson(result):
310 """Get url, osm and geojson"""
311 osm_type = result.get('osm_type', result.get('type'))
312 if 'osm_id' not in result:
313 # see https://github.com/osm-search/Nominatim/issues/1521
314 # query example: "EC1M 5RF London"
315 url = result_lat_lon_url.format(lat=result['lat'], lon=result['lon'], zoom=12)
316 osm = {}
317 else:
318 url = result_id_url.format(osm_type=osm_type, osm_id=result['osm_id'])
319 osm = {'type': osm_type, 'id': result['osm_id']}
320
321 geojson = result.get('geojson')
322 # if no geojson is found and osm_type is a node, add geojson Point
323 if not geojson and osm_type == 'node':
324 geojson = {'type': 'Point', 'coordinates': [result['lon'], result['lat']]}
325
326 return url, osm, geojson
327
328

Referenced by response().

+ Here is the caller graph for this function:

◆ get_wikipedia_image()

searx.engines.openstreetmap.get_wikipedia_image ( raw_value)

Definition at line 208 of file openstreetmap.py.

208def get_wikipedia_image(raw_value):
209 if not raw_value:
210 return None
211 return get_external_url('wikimedia_image', raw_value)
212
213

Referenced by fetch_wikidata().

+ Here is the caller graph for this function:

◆ request()

searx.engines.openstreetmap.request ( query,
params )

Definition at line 139 of file openstreetmap.py.

139def request(query, params):
140 params['url'] = base_url + search_string.format(query=urllib.parse.urlencode({'q': query}))
141 return params
142
143

◆ response()

EngineResults searx.engines.openstreetmap.response ( resp)

Definition at line 144 of file openstreetmap.py.

144def response(resp) -> EngineResults:
145 results = EngineResults()
146
147 nominatim_json = resp.json()
148 user_language = resp.search_params['language']
149
150 l = re.findall(r"from\s+(.*)\s+to\s+(.+)", resp.search_params["query"])
151 if not l:
152 l = re.findall(r"\s*(.*)\s+to\s+(.+)", resp.search_params["query"])
153 if l:
154 point1, point2 = [urllib.parse.quote_plus(p) for p in l[0]]
155
156 results.add(
157 results.types.Answer(
158 answer=gettext('Show route in map ..'),
159 url=f"{route_url}/?point={point1}&point={point2}",
160 )
161 )
162
163 # simplify the code below: make sure extratags is a dictionary
164 for result in nominatim_json:
165 if not isinstance(result.get('extratags'), dict):
166 result["extratags"] = {}
167
168 # fetch data from wikidata
169 fetch_wikidata(nominatim_json, user_language)
170
171 # create results
172 for result in nominatim_json:
173 title, address = get_title_address(result)
174
175 # ignore result without title
176 if not title:
177 continue
178
179 url, osm, geojson = get_url_osm_geojson(result)
180 thumbnail = get_thumbnail(get_img_src(result))
181 links, link_keys = get_links(result, user_language)
182 data = get_data(result, user_language, link_keys)
183
184 results.append(
185 {
186 'template': 'map.html',
187 'title': title,
188 'address': address,
189 'address_label': get_key_label('addr', user_language),
190 'url': url,
191 'osm': osm,
192 'geojson': geojson,
193 'thumbnail': thumbnail,
194 'links': links,
195 'data': data,
196 'type': get_tag_label(result.get('category'), result.get('type', ''), user_language),
197 'type_icon': result.get('icon'),
198 'content': '',
199 'longitude': result['lon'],
200 'latitude': result['lat'],
201 'boundingbox': result['boundingbox'],
202 }
203 )
204
205 return results
206
207

References fetch_wikidata(), get_data(), get_img_src(), get_key_label(), get_links(), get_tag_label(), get_title_address(), and get_url_osm_geojson().

+ Here is the call graph for this function:

◆ value_to_https_link()

searx.engines.openstreetmap.value_to_https_link ( value)

Definition at line 70 of file openstreetmap.py.

70def value_to_https_link(value):
71 http = 'http://'
72 if value.startswith(http):
73 value = 'https://' + value[len(http) :]
74 return (value, value)
75
76

◆ value_to_website_link()

searx.engines.openstreetmap.value_to_website_link ( value)

Definition at line 77 of file openstreetmap.py.

77def value_to_website_link(value):
78 value = value.split(';')[0]
79 return (value, value)
80
81

◆ value_wikipedia_link()

searx.engines.openstreetmap.value_wikipedia_link ( value)

Definition at line 82 of file openstreetmap.py.

82def value_wikipedia_link(value):
83 value = value.split(':', 1)
84 return ('https://{0}.wikipedia.org/wiki/{1}'.format(*value), '{1} ({0})'.format(*value))
85
86

◆ value_with_prefix()

searx.engines.openstreetmap.value_with_prefix ( prefix,
value )

Definition at line 87 of file openstreetmap.py.

87def value_with_prefix(prefix, value):
88 return (prefix + value, value)
89
90

Variable Documentation

◆ about

dict searx.engines.openstreetmap.about
Initial value:
1= {
2 "website": 'https://www.openstreetmap.org/',
3 "wikidata_id": 'Q936',
4 "official_api_documentation": 'http://wiki.openstreetmap.org/wiki/Nominatim',
5 "use_official_api": True,
6 "require_api_key": False,
7 "results": 'JSON',
8}

Definition at line 19 of file openstreetmap.py.

◆ base_url

str searx.engines.openstreetmap.base_url = 'https://nominatim.openstreetmap.org/'

Definition at line 35 of file openstreetmap.py.

◆ categories

list searx.engines.openstreetmap.categories = ['map']

Definition at line 29 of file openstreetmap.py.

◆ KEY_ORDER

list searx.engines.openstreetmap.KEY_ORDER
Initial value:
1= [
2 'cuisine',
3 'organic',
4 'delivery',
5 'delivery:covid19',
6 'opening_hours',
7 'opening_hours:covid19',
8 'fee',
9 'payment:*',
10 'currency:*',
11 'outdoor_seating',
12 'bench',
13 'wheelchair',
14 'level',
15 'building:levels',
16 'bin',
17 'public_transport',
18 'internet_access:ssid',
19]

Definition at line 117 of file openstreetmap.py.

◆ KEY_RANKS

dict searx.engines.openstreetmap.KEY_RANKS = {k: i for i, k in enumerate(KEY_ORDER)}

Definition at line 136 of file openstreetmap.py.

◆ language_support

bool searx.engines.openstreetmap.language_support = True

Definition at line 31 of file openstreetmap.py.

◆ paging

bool searx.engines.openstreetmap.paging = False

Definition at line 30 of file openstreetmap.py.

◆ result_id_url

str searx.engines.openstreetmap.result_id_url = 'https://openstreetmap.org/{osm_type}/{osm_id}'

Definition at line 37 of file openstreetmap.py.

◆ result_lat_lon_url

str searx.engines.openstreetmap.result_lat_lon_url = 'https://www.openstreetmap.org/?mlat={lat}&mlon={lon}&zoom={zoom}&layers=M'

Definition at line 38 of file openstreetmap.py.

◆ route_url

str searx.engines.openstreetmap.route_url = 'https://graphhopper.com/maps'

Definition at line 40 of file openstreetmap.py.

◆ search_string

str searx.engines.openstreetmap.search_string = 'search?{query}&polygon_geojson=1&format=jsonv2&addressdetails=1&extratags=1&dedupe=1'

Definition at line 36 of file openstreetmap.py.

◆ send_accept_language_header

bool searx.engines.openstreetmap.send_accept_language_header = True

Definition at line 32 of file openstreetmap.py.

◆ VALUE_TO_LINK

dict searx.engines.openstreetmap.VALUE_TO_LINK
Initial value:
1= {
2 'website': value_to_website_link,
3 'contact:website': value_to_website_link,
4 'email': partial(value_with_prefix, 'mailto:'),
5 'contact:email': partial(value_with_prefix, 'mailto:'),
6 'contact:phone': partial(value_with_prefix, 'tel:'),
7 'phone': partial(value_with_prefix, 'tel:'),
8 'fax': partial(value_with_prefix, 'fax:'),
9 'contact:fax': partial(value_with_prefix, 'fax:'),
10 'contact:mastodon': value_to_https_link,
11 'facebook': value_to_https_link,
12 'contact:facebook': value_to_https_link,
13 'contact:foursquare': value_to_https_link,
14 'contact:instagram': value_to_https_link,
15 'contact:linkedin': value_to_https_link,
16 'contact:pinterest': value_to_https_link,
17 'contact:telegram': value_to_https_link,
18 'contact:tripadvisor': value_to_https_link,
19 'contact:twitter': value_to_https_link,
20 'contact:yelp': value_to_https_link,
21 'contact:youtube': value_to_https_link,
22 'contact:webcam': value_to_website_link,
23 'wikipedia': value_wikipedia_link,
24 'wikidata': partial(value_with_prefix, 'https://wikidata.org/wiki/'),
25 'brand:wikidata': partial(value_with_prefix, 'https://wikidata.org/wiki/'),
26}

Definition at line 91 of file openstreetmap.py.

◆ wikidata_image_sparql

str searx.engines.openstreetmap.wikidata_image_sparql
Initial value:
1= """
2select ?item ?itemLabel ?image ?sign ?symbol ?website ?wikipediaName
3where {
4 hint:Query hint:optimizer "None".
5 values ?item { %WIKIDATA_IDS% }
6 OPTIONAL { ?item wdt:P18|wdt:P8517|wdt:P4291|wdt:P5252|wdt:P3451|wdt:P4640|wdt:P5775|wdt:P2716|wdt:P1801|wdt:P4896 ?image }
7 OPTIONAL { ?item wdt:P1766|wdt:P8505|wdt:P8667 ?sign }
8 OPTIONAL { ?item wdt:P41|wdt:P94|wdt:P154|wdt:P158|wdt:P2910|wdt:P4004|wdt:P5962|wdt:P8972 ?symbol }
9 OPTIONAL { ?item wdt:P856 ?website }
10 SERVICE wikibase:label {
11 bd:serviceParam wikibase:language "%LANGUAGE%,en".
12 ?item rdfs:label ?itemLabel .
13 }
14 OPTIONAL {
15 ?wikipediaUrl schema:about ?item;
16 schema:isPartOf/wikibase:wikiGroup "wikipedia";
17 schema:name ?wikipediaName;
18 schema:inLanguage "%LANGUAGE%" .
19 }
20}
21ORDER by ?item
22"""

Definition at line 42 of file openstreetmap.py.