]> git.openstreetmap.org Git - nominatim.git/blobdiff - nominatim/data/place_info.py
remove analyze() from PlaceInfo class
[nominatim.git] / nominatim / data / place_info.py
index 87ecb731b9ee8e989c5069ecd9ae3c54161676f0..d2ba3979260fcfa2fd411771b844c3d67807c440 100644 (file)
@@ -9,8 +9,6 @@ Wrapper around place information the indexer gets from the database and hands to
 the tokenizer.
 """
 
-import psycopg2.extras
-
 class PlaceInfo:
     """ Data class containing all information the tokenizer gets about a
         place it should process the names for.
@@ -20,13 +18,6 @@ class PlaceInfo:
         self._info = info
 
 
-    def analyze(self, analyzer):
-        """ Process this place with the given tokenizer and return the
-            result in psycopg2-compatible Json.
-        """
-        return psycopg2.extras.Json(analyzer.process_place(self))
-
-
     @property
     def name(self):
         """ A dictionary with the names of the place or None if the place