]> git.openstreetmap.org Git - nominatim.git/blob - nominatim/indexer/place_info.py
export more data for the tokenizer name preparation
[nominatim.git] / nominatim / indexer / place_info.py
1 """
2 Wrapper around place information the indexer gets from the database and hands to
3 the tokenizer.
4 """
5
6 import psycopg2.extras
7
8 class PlaceInfo:
9     """ Data class containing all information the tokenizer gets about a
10         place it should process the names for.
11     """
12
13     def __init__(self, info):
14         self._info = info
15
16
17     def analyze(self, analyzer):
18         """ Process this place with the given tokenizer and return the
19             result in psycopg2-compatible Json.
20         """
21         return psycopg2.extras.Json(analyzer.process_place(self))
22
23
24     @property
25     def name(self):
26         """ A dictionary with the names of the place or None if the place
27             has no names.
28         """
29         return self._info.get('name')
30
31
32     @property
33     def address(self):
34         """ A dictionary with the address elements of the place
35             or None if no address information is available.
36         """
37         return self._info.get('address')
38
39
40     @property
41     def country_code(self):
42         """ The country code of the country the place is in. Guaranteed
43             to be a two-letter lower-case string or None, if no country
44             could be found.
45         """
46         return self._info.get('country_code')
47
48
49     @property
50     def rank_address(self):
51         """ The computed rank address before rank correction.
52         """
53         return self._info.get('rank_address')
54
55
56     def is_a(self, key, value):
57         """ Check if the place's primary tag corresponds to the given
58             key and value.
59         """
60         return self._info.get('class') == key and self._info.get('type') == value
61
62
63     def is_country(self):
64         """ Check if the place is a valid country boundary.
65         """
66         return self.rank_address == 4 \
67                and self.is_a('boundary', 'administrative') \
68                and self.country_code is not None