8 protected $iMaxRank = 28;
10 protected $aLangPrefOrder = array();
12 protected $bIncludePolygonAsPoints = false;
13 protected $bIncludePolygonAsText = false;
14 protected $bIncludePolygonAsGeoJSON = false;
15 protected $bIncludePolygonAsKML = false;
16 protected $bIncludePolygonAsSVG = false;
17 protected $fPolygonSimplificationThreshold = 0.0;
20 function ReverseGeocode(&$oDB)
25 function setLanguagePreference($aLangPref)
27 $this->aLangPrefOrder = $aLangPref;
30 function setLatLon($fLat, $fLon)
32 $this->fLat = (float)$fLat;
33 $this->fLon = (float)$fLon;
36 function setRank($iRank)
38 $this->iMaxRank = $iRank;
41 function setZoom($iZoom)
43 // Zoom to rank, this could probably be calculated but a lookup gives fine control
45 0 => 2, // Continent / Sea
57 12 => 18, // Town / Village
61 16 => 26, // Street, TODO: major street?
63 18 => 30, // or >, Building
64 19 => 30, // or >, Building
66 $this->iMaxRank = (isset($iZoom) && isset($aZoomRank[$iZoom]))?$aZoomRank[$iZoom]:28;
69 function setIncludePolygonAsPoints($b = true)
71 $this->bIncludePolygonAsPoints = $b;
74 function getIncludePolygonAsPoints()
76 return $this->bIncludePolygonAsPoints;
79 function setIncludePolygonAsText($b = true)
81 $this->bIncludePolygonAsText = $b;
84 function getIncludePolygonAsText()
86 return $this->bIncludePolygonAsText;
89 function setIncludePolygonAsGeoJSON($b = true)
91 $this->bIncludePolygonAsGeoJSON = $b;
94 function setIncludePolygonAsKML($b = true)
96 $this->bIncludePolygonAsKML = $b;
99 function setIncludePolygonAsSVG($b = true)
101 $this->bIncludePolygonAsSVG = $b;
104 function setPolygonSimplificationThreshold($f)
106 $this->fPolygonSimplificationThreshold = $f;
109 // returns { place_id =>, type => '(osm|tiger)' }
110 // fails if no place was found
113 $sPointSQL = 'ST_SetSRID(ST_Point('.$this->fLon.','.$this->fLat.'),4326)';
114 $iMaxRank = $this->iMaxRank;
115 $iMaxRank_orig = $this->iMaxRank;
117 // Find the nearest point
118 $fSearchDiam = 0.0004;
121 $fMaxAreaDistance = 1;
122 $bIsInUnitedStates = false;
123 $bPlaceIsTiger = false;
124 $bPlaceIsLine = false;
125 while(!$iPlaceID && $fSearchDiam < $fMaxAreaDistance)
127 $fSearchDiam = $fSearchDiam * 2;
129 // If we have to expand the search area by a large amount then we need a larger feature
130 // then there is a limit to how small the feature should be
131 if ($fSearchDiam > 2 && $iMaxRank > 4) $iMaxRank = 4;
132 if ($fSearchDiam > 1 && $iMaxRank > 9) $iMaxRank = 8;
133 if ($fSearchDiam > 0.8 && $iMaxRank > 10) $iMaxRank = 10;
134 if ($fSearchDiam > 0.6 && $iMaxRank > 12) $iMaxRank = 12;
135 if ($fSearchDiam > 0.2 && $iMaxRank > 17) $iMaxRank = 17;
136 if ($fSearchDiam > 0.1 && $iMaxRank > 18) $iMaxRank = 18;
137 if ($fSearchDiam > 0.008 && $iMaxRank > 22) $iMaxRank = 22;
138 if ($fSearchDiam > 0.001 && $iMaxRank > 26) $iMaxRank = 26;
140 $sSQL = 'select place_id,parent_place_id,rank_search,calculated_country_code';
141 $sSQL .= ' FROM placex';
142 $sSQL .= ' WHERE ST_DWithin('.$sPointSQL.', geometry, '.$fSearchDiam.')';
143 $sSQL .= ' and rank_search != 28 and rank_search >= '.$iMaxRank;
144 $sSQL .= ' and (name is not null or housenumber is not null)';
145 $sSQL .= ' and class not in (\'waterway\',\'railway\',\'tunnel\',\'bridge\',\'man_made\')';
146 $sSQL .= ' and indexed_status = 0 ';
147 $sSQL .= ' and (ST_GeometryType(geometry) not in (\'ST_Polygon\',\'ST_MultiPolygon\') ';
148 $sSQL .= ' OR ST_DWithin('.$sPointSQL.', centroid, '.$fSearchDiam.'))';
149 $sSQL .= ' ORDER BY ST_distance('.$sPointSQL.', geometry) ASC limit 1';
150 if (CONST_Debug) var_dump($sSQL);
151 $aPlace = chksql($this->oDB->getRow($sSQL),
152 "Could not determine closest place.");
153 $iPlaceID = $aPlace['place_id'];
154 $iParentPlaceID = $aPlace['parent_place_id'];
155 $bIsInUnitedStates = ($aPlace['calculated_country_code'] == 'us');
157 // if a street or house was found, look in interpolation lines table
158 if ($iMaxRank_orig >= 28 && $aPlace && $aPlace['rank_search'] >= 26)
160 // if a house was found, search the interpolation line that is at least as close as the house
161 $sSQL = 'SELECT place_id, parent_place_id, 30 as rank_search, ST_line_locate_point(linegeo,'.$sPointSQL.') as fraction';
162 $sSQL .= ' FROM location_property_osmline';
163 $sSQL .= ' WHERE ST_DWithin('.$sPointSQL.', linegeo, '.$fSearchDiam.')';
164 $sSQL .= ' and indexed_status = 0 ';
165 $sSQL .= ' ORDER BY ST_distance('.$sPointSQL.', linegeo) ASC limit 1';
169 $sSQL = preg_replace('/limit 1/', 'limit 100', $sSQL);
172 $aAllHouses = chksql($this->oDB->getAll($sSQL));
173 foreach($aAllHouses as $i)
175 echo $i['housenumber'] . ' | ' . $i['distance'] * 1000 . ' | ' . $i['lat'] . ' | ' . $i['lon']. ' | '. "<br>\n";
178 $aPlaceLine = chksql($this->oDB->getRow($sSQL),
179 "Could not determine closest housenumber on an osm interpolation line.");
182 if (CONST_Debug) var_dump('found housenumber in interpolation lines table', $aPlaceLine);
183 if ($aPlace['rank_search'] == 30)
185 // if a house was already found in placex, we have to find out,
186 // if the placex house or the interpolated house are closer to the searched point
187 // distance between point and placex house
188 $sSQL = 'SELECT ST_distance('.$sPointSQL.', house.geometry) as distance FROM placex as house WHERE house.place_id='.$iPlaceID;
189 $aDistancePlacex = chksql($this->oDB->getRow($sSQL),
190 "Could not determine distance between searched point and placex house.");
191 $fDistancePlacex = $aDistancePlacex['distance'];
192 // distance between point and interpolated house (fraction on interpolation line)
193 $sSQL = 'SELECT ST_distance('.$sPointSQL.', ST_LineInterpolatePoint(linegeo, '.$aPlaceLine['fraction'].')) as distance';
194 $sSQL .= ' FROM location_property_osmline WHERE place_id = '.$aPlaceLine['place_id'];
195 $aDistanceInterpolation = chksql($this->oDB->getRow($sSQL),
196 "Could not determine distance between searched point and interpolated house.");
197 $fDistanceInterpolation = $aDistanceInterpolation['distance'];
198 if ($fDistanceInterpolation < $fDistancePlacex)
200 // interpolation is closer to point than placex house
201 $bPlaceIsLine = true;
202 $aPlace = $aPlaceLine;
203 $iPlaceID = $aPlaceLine['place_id'];
204 $iParentPlaceID = $aPlaceLine['parent_place_id']; // the street
205 $fFraction = $aPlaceLine['fraction'];
207 // else: nothing to do, take placex house from above
211 $bPlaceIsLine = true;
212 $aPlace = $aPlaceLine;
213 $iPlaceID = $aPlaceLine['place_id'];
214 $iParentPlaceID = $aPlaceLine['parent_place_id']; // the street
215 $fFraction = $aPlaceLine['fraction'];
220 // Only street found? If it's in the US we can check TIGER data for nearest housenumber
221 if (CONST_Use_US_Tiger_Data && $bIsInUnitedStates && $iMaxRank_orig >= 28 && $iPlaceID && ($aPlace['rank_search'] == 26 || $aPlace['rank_search'] == 27 ))
223 $fSearchDiam = 0.001;
224 $sSQL = 'SELECT place_id,parent_place_id,30 as rank_search, ST_line_locate_point(linegeo,'.$sPointSQL.') as fraction';
225 //if (CONST_Debug) { $sSQL .= ', housenumber, ST_distance('.$sPointSQL.', centroid) as distance, st_y(centroid) as lat, st_x(centroid) as lon'; }
226 $sSQL .= ' FROM location_property_tiger WHERE parent_place_id = '.$iPlaceID;
227 $sSQL .= ' AND ST_DWithin('.$sPointSQL.', linegeo, '.$fSearchDiam.')'; //no centroid anymore in Tiger data, now we have lines
228 $sSQL .= ' ORDER BY ST_distance('.$sPointSQL.', linegeo) ASC limit 1';
232 $sSQL = preg_replace('/limit 1/', 'limit 100', $sSQL);
235 $aAllHouses = chksql($this->oDB->getAll($sSQL));
236 foreach($aAllHouses as $i)
238 echo $i['housenumber'] . ' | ' . $i['distance'] * 1000 . ' | ' . $i['lat'] . ' | ' . $i['lon']. ' | '. "<br>\n";
242 $aPlaceTiger = chksql($this->oDB->getRow($sSQL),
243 "Could not determine closest Tiger place.");
246 if (CONST_Debug) var_dump('found Tiger housenumber', $aPlaceTiger);
247 $bPlaceIsTiger = true;
248 $aPlace = $aPlaceTiger;
249 $iPlaceID = $aPlaceTiger['place_id'];
250 $iParentPlaceID = $aPlaceTiger['parent_place_id']; // the street
251 $fFraction = $aPlaceTiger['fraction'];
255 // The point we found might be too small - use the address to find what it is a child of
256 if ($iPlaceID && $iMaxRank < 28)
258 if (($aPlace['rank_search'] > 28 || $bPlaceIsTiger || $bPlaceIsLine) && $iParentPlaceID)
260 $iPlaceID = $iParentPlaceID;
262 $sSQL = 'select address_place_id';
263 $sSQL .= ' FROM place_addressline';
264 $sSQL .= " WHERE place_id = $iPlaceID";
265 $sSQL .= " ORDER BY abs(cached_rank_address - $iMaxRank) asc,cached_rank_address desc,isaddress desc,distance desc";
267 $iPlaceID = chksql($this->oDB->getOne($sSQL),
268 "Could not get parent for place.");
271 $iPlaceID = $aPlace['place_id'];
274 return array('place_id' => $iPlaceID,
275 'type' => $bPlaceIsTiger ? 'tiger' : $bPlaceIsLine ? 'interpolation' : 'osm',
276 'fraction' => ($bPlaceIsTiger || $bPlaceIsLine) ? $fFraction : -1);