]> git.openstreetmap.org Git - nominatim.git/blob - lib/ReverseGeocode.php
changed reverse geocode algorithm
[nominatim.git] / lib / ReverseGeocode.php
1 <?php
2
3 namespace Nominatim;
4
5 require_once(CONST_BasePath.'/lib/Result.php');
6
7 class ReverseGeocode
8 {
9     protected $oDB;
10     protected $iMaxRank = 28;
11
12
13     public function __construct(&$oDB)
14     {
15         $this->oDB =& $oDB;
16     }
17
18
19     public function setZoom($iZoom)
20     {
21         // Zoom to rank, this could probably be calculated but a lookup gives fine control
22         $aZoomRank = array(
23                       0 => 2, // Continent / Sea
24                       1 => 2,
25                       2 => 2,
26                       3 => 4, // Country
27                       4 => 4,
28                       5 => 8, // State
29                       6 => 10, // Region
30                       7 => 10,
31                       8 => 12, // County
32                       9 => 12,
33                       10 => 17, // City
34                       11 => 17,
35                       12 => 18, // Town / Village
36                       13 => 18,
37                       14 => 22, // Suburb
38                       15 => 22,
39                       16 => 26, // Street, TODO: major street?
40                       17 => 26,
41                       18 => 30, // or >, Building
42                       19 => 30, // or >, Building
43                      );
44         $this->iMaxRank = (isset($iZoom) && isset($aZoomRank[$iZoom]))?$aZoomRank[$iZoom]:28;
45     }
46
47     /**
48      * Find the closest interpolation with the given search diameter.
49      *
50      * @param string $sPointSQL   Reverse geocoding point as SQL
51      * @param float  $fSearchDiam Search diameter
52      *
53      * @return Record of the interpolation or null.
54      */
55     protected function lookupInterpolation($sPointSQL, $fSearchDiam)
56     {
57         $sSQL = 'SELECT place_id, parent_place_id, 30 as rank_search,';
58         $sSQL .= '  ST_LineLocatePoint(linegeo,'.$sPointSQL.') as fraction,';
59         $sSQL .= '  startnumber, endnumber, interpolationtype,';
60         $sSQL .= '  ST_Distance(linegeo,'.$sPointSQL.') as distance';
61         $sSQL .= ' FROM location_property_osmline';
62         $sSQL .= ' WHERE ST_DWithin('.$sPointSQL.', linegeo, '.$fSearchDiam.')';
63         $sSQL .= ' and indexed_status = 0 and startnumber is not NULL ';
64         $sSQL .= ' ORDER BY distance ASC limit 1';
65
66         return chksql(
67             $this->oDB->getRow($sSQL),
68             'Could not determine closest housenumber on an osm interpolation line.'
69         );
70     }
71     
72     protected function lookupPolygon($sPointSQL, $iMaxRank)
73     {
74         $sSQL = 'select place_id,parent_place_id,rank_search,country_code, geometry';
75         $sSQL .= ' FROM placex';
76         $sSQL .= ' WHERE ST_GeometryType(geometry) in (\'ST_Polygon\',\'ST_MultiPolygon\')';
77         $sSQL .= ' AND rank_search <= LEAST(25, '.$iMaxRank.')';
78         $sSQL .= ' AND ST_CONTAINS(geometry, '.$sPointSQL.' )';
79         $sSQL .= ' AND type != \'postcode\' ';
80         $sSQL .= ' AND name IS NOT NULL ';
81         $sSQL .= ' ORDER BY rank_search DESC LIMIT 1';
82
83         $aPoly = chksql(
84             $this->oDB->getRow($sSQL),
85             'Could not determine polygon containing the point.'
86         );
87         if ($aPoly) {
88             $iParentPlaceID = $aPoly['parent_place_id'];
89             $iRankSearch = $aPoly['rank_search'];
90             $iGeometry = $aPoly['geometry'];
91             
92             $sSQL = 'select place_id,parent_place_id,rank_search,country_code,';
93             $sSQL .='  ST_distance('.$sPointSQL.', geometry) as distance';
94             $sSQL .= ' FROM placex';
95             $sSQL .= ' WHERE osm_type = \'N\'';
96             $sSQL .= ' AND rank_search >= '.$iRankSearch;
97             $sSQL .= ' AND rank_search <= LEAST(25, '.$iMaxRank.')';
98             $sSQL .= ' AND ST_CONTAINS(\''.$iGeometry.'\'::geometry, geometry )';
99             $sSQL .= ' AND type != \'postcode\'';
100             $sSQL .= ' AND name IS NOT NULL ';
101             $sSQL .= ' ORDER BY distance ASC,';
102             $sSQL .= ' rank_search DESC';
103             $sSQL .= ' limit 1';
104             if (CONST_Debug) var_dump($sSQL);
105             $aPlacNode = chksql(
106                 $this->oDB->getRow($sSQL),
107                 'Could not determine place node.'
108             );
109             if ($aPlacNode) {
110                 return $aPlacNode;
111             }
112         }
113         return $aPoly;
114     }
115
116     public function lookup($fLat, $fLon, $bDoInterpolation = true)
117     {
118         return $this->lookupPoint(
119             'ST_SetSRID(ST_Point('.$fLon.','.$fLat.'),4326)',
120             $bDoInterpolation
121         );
122     }
123
124     public function lookupPoint($sPointSQL, $bDoInterpolation = true)
125     {
126         
127         $iMaxRank = $this->iMaxRank;
128
129         // Find the nearest point
130         $fSearchDiam = 0.006;
131         $oResult = null;
132         $aPlace = null;
133         $fMaxAreaDistance = 1;
134         $bIsTigerStreet = false;
135         
136         // for POI or street level
137         if ( $iMaxRank >= 26 ) {
138             
139             $sSQL = 'select place_id,parent_place_id,rank_search,country_code,';
140             $sSQL .= 'CASE WHEN ST_GeometryType(geometry) in (\'ST_Polygon\',\'ST_MultiPolygon\') THEN ST_distance('.$sPointSQL.', centroid)';
141             $sSQL .= ' ELSE ST_distance('.$sPointSQL.', geometry) ';
142             $sSQL .= ' END as distance';
143             $sSQL .= ' FROM ';
144             $sSQL .= ' placex';
145             $sSQL .= '   WHERE ST_DWithin('.$sPointSQL.', geometry, '.$fSearchDiam.')';
146             $sSQL .= '   AND';
147             // only streets
148             if ($iMaxRank == 26) {
149                 $sSQL .= ' rank_search != 28 and rank_search = 26';
150             } else {
151                 $sSQL .= ' rank_search != 28 and rank_search >= 26';
152             }
153             $sSQL .= ' and (name is not null or housenumber is not null';
154             $sSQL .= '      or rank_search between 26 and 27)';
155             $sSQL .= ' and type not in (\'proposed\')';
156             $sSQL .= ' and class not in (\'waterway\',\'railway\',\'tunnel\',\'bridge\',\'man_made\')';
157             $sSQL .= ' and indexed_status = 0 and linked_place_id is null';
158             $sSQL .= ' and (ST_GeometryType(geometry) not in (\'ST_Polygon\',\'ST_MultiPolygon\') ';
159             $sSQL .= ' OR ST_DWithin('.$sPointSQL.', centroid, '.$fSearchDiam.'))';
160             $sSQL .= ' ORDER BY distance ASC limit 1';
161             if (CONST_Debug) var_dump($sSQL);
162             $aPlace = chksql(
163                 $this->oDB->getRow($sSQL),
164                 'Could not determine closest place.'
165             );
166             
167             if ($aPlace) {
168                     $iPlaceID = $aPlace['place_id'];
169                     $oResult = new Result($iPlaceID);
170                     $iParentPlaceID = $aPlace['parent_place_id'];
171                     // if street and maxrank > streetlevel
172                     if (($aPlace['rank_search'] == 26 || $aPlace['rank_search'] == 27)&& $iMaxRank > 27 ) {
173                         // find the closest object (up to a certain radius) of which the street is a parent of
174                         $sSQL = ' select place_id,parent_place_id,rank_search,country_code,';
175                         $sSQL .= ' ST_distance('.$sPointSQL.', geometry) as distance';
176                         $sSQL .= ' FROM ';
177                         $sSQL .= ' placex';
178                         // radius ?
179                         $sSQL .= ' WHERE ST_DWithin('.$sPointSQL.', geometry, 0.003)';
180                         $sSQL .= ' AND parent_place_id = '.$iPlaceID;
181                         $sSQL .= ' and (name is not null or housenumber is not null)';
182                         $sSQL .= ' ORDER BY distance ASC limit 1';
183                         if (CONST_Debug) var_dump($sSQL);
184                         $aStreet = chksql(
185                             $this->oDB->getRow($sSQL),
186                             'Could not determine closest place.'
187                         );
188                         if ($aStreet) {
189                             $iPlaceID = $aStreet['place_id'];
190                             $oResult = new Result($iPlaceID);
191                             $iParentPlaceID = $aStreet['parent_place_id'];
192                         }
193                     } 
194                 }else{
195                     $aPlace = $this->lookupPolygon($sPointSQL, $iMaxRank);
196                     if ($aPlace) {
197                         $oResult = new Result($aPlace['place_id']);
198                     }
199                 }
200             // lower than street level ($iMaxRank < 26 )
201             }else{
202                 $aPlace = $this->lookupPolygon($sPointSQL, $iMaxRank);
203                 if ($aPlace) {
204                     $oResult = new Result($aPlace['place_id']);
205             }
206             
207         }  
208         return $oResult;
209     }
210
211 }