5 require_once(CONST_BasePath.'/lib/Result.php');
10 protected $iMaxRank = 28;
13 public function __construct(&$oDB)
19 public function setZoom($iZoom)
21 // Zoom to rank, this could probably be calculated but a lookup gives fine control
23 0 => 2, // Continent / Sea
35 12 => 18, // Town / Village
39 16 => 26, // Street, TODO: major street?
41 18 => 30, // or >, Building
42 19 => 30, // or >, Building
44 $this->iMaxRank = (isset($iZoom) && isset($aZoomRank[$iZoom]))?$aZoomRank[$iZoom]:28;
48 * Find the closest interpolation with the given search diameter.
50 * @param string $sPointSQL Reverse geocoding point as SQL
51 * @param float $fSearchDiam Search diameter
52 * @param integer $iParentPlaceID Id of parent object
54 * @return Record of the interpolation or null.
56 protected function lookupInterpolation($sPointSQL, $fSearchDiam, $iParentPlaceID = null)
58 $sSQL = 'SELECT place_id, parent_place_id, 30 as rank_search,';
59 $sSQL .= ' ST_LineLocatePoint(linegeo,'.$sPointSQL.') as fraction,';
60 $sSQL .= ' startnumber, endnumber, interpolationtype,';
61 $sSQL .= ' ST_Distance(linegeo,'.$sPointSQL.') as distance';
62 $sSQL .= ' FROM location_property_osmline';
63 $sSQL .= ' WHERE ST_DWithin('.$sPointSQL.', linegeo, '.$fSearchDiam.')';
64 $sSQL .= ' and indexed_status = 0 and startnumber is not NULL ';
65 if (isset($iParentPlaceID)) {
66 $sSQL .= ' and parent_place_id = '.$iParentPlaceID;
68 $sSQL .= ' ORDER BY distance ASC limit 1';
71 $this->oDB->getRow($sSQL),
72 'Could not determine closest housenumber on an osm interpolation line.'
76 protected function polygonFunctions($sPointSQL, $iMaxRank)
80 $aPlace = $this->lookupPolygon($sPointSQL, $iMaxRank);
82 $oResult = new Result($aPlace['place_id']);
83 } elseif (!$aPlace && $iMaxRank > 4) {
84 $aPlace = $this->noPolygonFound($sPointSQL, $iMaxRank);
86 $oResult = new Result($aPlace['place_id']);
92 protected function noPolygonFound($sPointSQL, $iMaxRank)
94 // searches for polygon in table country_osm_grid which contains the searchpoint
95 $sSQL = 'SELECT * FROM country_osm_grid';
96 $sSQL .= ' WHERE ST_CONTAINS (geometry, '.$sPointSQL.' )';
99 $this->oDB->getRow($sSQL),
100 'Could not determine polygon containing the point.'
103 $sCountryCode = $aPoly['country_code'];
105 $sSQL = 'SELECT *, ST_distance('.$sPointSQL.', geometry) as distance';
106 $sSQL .= ' FROM placex';
107 $sSQL .= ' WHERE osm_type = \'N\'';
108 $sSQL .= ' AND country_code = \''.$sCountryCode.'\'';
109 $sSQL .= ' AND rank_address > 0';
110 $sSQL .= ' AND rank_address <= ' .Min(25, $iMaxRank);
111 $sSQL .= ' AND type != \'postcode\'';
112 $sSQL .= ' AND name IS NOT NULL ';
113 $sSQL .= ' and indexed_status = 0 and linked_place_id is null';
114 $sSQL .= ' ORDER BY distance ASC, rank_address DESC';
117 if (CONST_Debug) var_dump($sSQL);
119 $this->oDB->getRow($sSQL),
120 'Could not determine place node.'
128 protected function lookupPolygon($sPointSQL, $iMaxRank)
134 $sSQL = 'SELECT * FROM';
135 $sSQL .= '(select place_id,parent_place_id,rank_address, rank_search, country_code, geometry';
136 $sSQL .= ' FROM placex';
137 $sSQL .= ' WHERE ST_GeometryType(geometry) in (\'ST_Polygon\', \'ST_MultiPolygon\')';
138 $sSQL .= ' AND rank_address <= ' .Min(25, $iMaxRank);
139 $sSQL .= ' AND geometry && '.$sPointSQL;
140 $sSQL .= ' AND type != \'postcode\' ';
141 $sSQL .= ' AND name is not null';
142 $sSQL .= ' AND indexed_status = 0 and linked_place_id is null';
143 $sSQL .= ' ORDER BY rank_address DESC LIMIT 50 ) as a';
144 $sSQL .= ' WHERE ST_CONTAINS(geometry, '.$sPointSQL.' )';
145 $sSQL .= ' ORDER BY rank_address DESC LIMIT 1';
148 $this->oDB->getRow($sSQL),
149 'Could not determine polygon containing the point.'
152 $iParentPlaceID = $aPoly['parent_place_id'];
153 $iRankAddress = $aPoly['rank_address'];
154 $iRankSearch = $aPoly['rank_search'];
155 $iPlaceID = $aPoly['place_id'];
157 if ($iRankAddress != $iMaxRank) {
160 $sSQL .= ' SELECT place_id, rank_address,country_code, geometry,';
161 $sSQL .= ' ST_distance('.$sPointSQL.', geometry) as distance';
162 $sSQL .= ' FROM placex';
163 $sSQL .= ' WHERE osm_type = \'N\'';
164 if ($iRankAddress = 16) {
165 // using rank_search because of a better differentiation for place nodes at rank_address 16
166 $sSQL .= ' AND rank_search > '.$iRankSearch;
167 $sSQL .= ' AND rank_search <= ' .Min(25, $iMaxRank);
168 $sSQL .= ' AND class = \'place\'';
170 $sSQL .= ' AND rank_address > '.$iRankAddress;
171 $sSQL .= ' AND rank_address <= ' .Min(25, $iMaxRank);
173 $sSQL .= ' AND type != \'postcode\'';
174 $sSQL .= ' AND name IS NOT NULL ';
175 $sSQL .= ' and indexed_status = 0 and linked_place_id is null';
176 // preselection through bbox
177 $sSQL .= ' AND (SELECT geometry FROM placex WHERE place_id = '.$iPlaceID.') && geometry';
178 $sSQL .= ' ORDER BY distance ASC,';
179 $sSQL .= ' rank_address DESC';
180 $sSQL .= ' limit 500) as a';
181 $sSQL .= ' WHERE ST_CONTAINS((SELECT geometry FROM placex WHERE place_id = '.$iPlaceID.'), geometry )';
182 $sSQL .= ' ORDER BY distance ASC, rank_address DESC';
185 if (CONST_Debug) var_dump($sSQL);
187 $this->oDB->getRow($sSQL),
188 'Could not determine place node.'
199 public function lookup($fLat, $fLon, $bDoInterpolation = true)
201 return $this->lookupPoint(
202 'ST_SetSRID(ST_Point('.$fLon.','.$fLat.'),4326)',
207 public function lookupPoint($sPointSQL, $bDoInterpolation = true)
210 $iMaxRank = $this->iMaxRank;
212 // Find the nearest point
213 $fSearchDiam = 0.006;
216 $fMaxAreaDistance = 1;
217 $bIsTigerStreet = false;
219 // for POI or street level
220 if ($iMaxRank >= 26) {
221 $sSQL = 'select place_id,parent_place_id,rank_address,country_code,';
222 $sSQL .= 'CASE WHEN ST_GeometryType(geometry) in (\'ST_Polygon\',\'ST_MultiPolygon\') THEN ST_distance('.$sPointSQL.', centroid)';
223 $sSQL .= ' ELSE ST_distance('.$sPointSQL.', geometry) ';
224 $sSQL .= ' END as distance';
227 $sSQL .= ' WHERE ST_DWithin('.$sPointSQL.', geometry, '.$fSearchDiam.')';
230 if ($iMaxRank == 26) {
231 $sSQL .= ' rank_address = 26';
233 $sSQL .= ' rank_address between 26 and '.$iMaxRank;
235 $sSQL .= ' and (name is not null or housenumber is not null';
236 $sSQL .= ' or rank_address between 26 and 27)';
237 $sSQL .= ' and class not in (\'railway\',\'tunnel\',\'bridge\',\'man_made\')';
238 $sSQL .= ' and indexed_status = 0 and linked_place_id is null';
239 $sSQL .= ' and (ST_GeometryType(geometry) not in (\'ST_Polygon\',\'ST_MultiPolygon\') ';
240 $sSQL .= ' OR ST_DWithin('.$sPointSQL.', centroid, '.$fSearchDiam.'))';
241 $sSQL .= ' ORDER BY distance ASC limit 1';
242 if (CONST_Debug) var_dump($sSQL);
244 $this->oDB->getRow($sSQL),
245 'Could not determine closest place.'
250 $iDistance = $aPlace['distance'];
251 $iPlaceID = $aPlace['place_id'];
252 $oResult = new Result($iPlaceID);
253 $iParentPlaceID = $aPlace['parent_place_id'];
255 if ($bDoInterpolation && $iMaxRank >= 30) {
256 $aHouse = $this->lookupInterpolation($sPointSQL, $iDistance);
259 $oResult = new Result($aHouse['place_id'], Result::TABLE_OSMLINE);
260 $oResult->iHouseNumber = closestHouseNumber($aHouse);
264 // if street and maxrank > streetlevel
265 if (($aPlace['rank_address'] <=27)&& $iMaxRank > 27) {
266 // find the closest object (up to a certain radius) of which the street is a parent of
267 $sSQL = ' select place_id,parent_place_id,rank_address,country_code,';
268 $sSQL .= ' ST_distance('.$sPointSQL.', geometry) as distance';
272 $sSQL .= ' WHERE ST_DWithin('.$sPointSQL.', geometry, 0.001)';
273 $sSQL .= ' AND parent_place_id = '.$iPlaceID;
274 $sSQL .= ' and rank_address != 28';
275 $sSQL .= ' and (name is not null or housenumber is not null)';
276 $sSQL .= ' and class not in (\'railway\',\'tunnel\',\'bridge\',\'man_made\')';
277 $sSQL .= ' and indexed_status = 0 and linked_place_id is null';
278 $sSQL .= ' ORDER BY distance ASC limit 1';
279 if (CONST_Debug) var_dump($sSQL);
281 $this->oDB->getRow($sSQL),
282 'Could not determine closest place.'
285 $iDistance = $aPlace['distance'];
286 $iPlaceID = $aStreet['place_id'];
287 $oResult = new Result($iPlaceID);
288 $iParentPlaceID = $aStreet['parent_place_id'];
290 if ($bDoInterpolation && $iMaxRank >= 30) {
291 $aHouse = $this->lookupInterpolation($sPointSQL, $iDistance, $iParentPlaceID);
294 $oResult = new Result($aHouse['place_id'], Result::TABLE_OSMLINE);
295 $oResult->iHouseNumber = closestHouseNumber($aHouse);
301 // In the US we can check TIGER data for nearest housenumber
302 if (CONST_Use_US_Tiger_Data && $aPlace['country_code'] == 'us' && $this->iMaxRank >= 28) {
303 $fSearchDiam = $aPlace['rank_search'] > 28 ? $aPlace['distance'] : 0.001;
304 $sSQL = 'SELECT place_id,parent_place_id,30 as rank_search,';
305 $sSQL .= 'ST_LineLocatePoint(linegeo,'.$sPointSQL.') as fraction,';
306 $sSQL .= 'ST_distance('.$sPointSQL.', linegeo) as distance,';
307 $sSQL .= 'startnumber,endnumber,interpolationtype';
308 $sSQL .= ' FROM location_property_tiger WHERE parent_place_id = '.$oResult->iId;
309 $sSQL .= ' AND ST_DWithin('.$sPointSQL.', linegeo, '.$fSearchDiam.')';
310 $sSQL .= ' ORDER BY distance ASC limit 1';
311 if (CONST_Debug) var_dump($sSQL);
312 $aPlaceTiger = chksql(
313 $this->oDB->getRow($sSQL),
314 'Could not determine closest Tiger place.'
317 if (CONST_Debug) var_dump('found Tiger housenumber', $aPlaceTiger);
318 $aPlace = $aPlaceTiger;
319 $oResult = new Result($aPlace['place_id'], Result::TABLE_TIGER);
320 $oResult->iHouseNumber = closestHouseNumber($aPlaceTiger);
323 // if no POI or street is found ...
325 $oResult = $this->PolygonFunctions($sPointSQL, $iMaxRank);
327 // lower than street level ($iMaxRank < 26 )
329 $oResult = $this->PolygonFunctions($sPointSQL, $iMaxRank);