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 while(!$iPlaceID && $fSearchDiam < $fMaxAreaDistance)
126 $fSearchDiam = $fSearchDiam * 2;
128 // If we have to expand the search area by a large amount then we need a larger feature
129 // then there is a limit to how small the feature should be
130 if ($fSearchDiam > 2 && $iMaxRank > 4) $iMaxRank = 4;
131 if ($fSearchDiam > 1 && $iMaxRank > 9) $iMaxRank = 8;
132 if ($fSearchDiam > 0.8 && $iMaxRank > 10) $iMaxRank = 10;
133 if ($fSearchDiam > 0.6 && $iMaxRank > 12) $iMaxRank = 12;
134 if ($fSearchDiam > 0.2 && $iMaxRank > 17) $iMaxRank = 17;
135 if ($fSearchDiam > 0.1 && $iMaxRank > 18) $iMaxRank = 18;
136 if ($fSearchDiam > 0.008 && $iMaxRank > 22) $iMaxRank = 22;
137 if ($fSearchDiam > 0.001 && $iMaxRank > 26) $iMaxRank = 26;
139 $sSQL = 'select place_id,parent_place_id,rank_search,calculated_country_code';
140 $sSQL .= ' FROM placex';
141 $sSQL .= ' WHERE ST_DWithin('.$sPointSQL.', geometry, '.$fSearchDiam.')';
142 $sSQL .= ' and rank_search != 28 and rank_search >= '.$iMaxRank;
143 $sSQL .= ' and (name is not null or housenumber is not null)';
144 $sSQL .= ' and class not in (\'waterway\',\'railway\',\'tunnel\',\'bridge\',\'man_made\')';
145 $sSQL .= ' and indexed_status = 0 ';
146 $sSQL .= ' and (ST_GeometryType(geometry) not in (\'ST_Polygon\',\'ST_MultiPolygon\') ';
147 $sSQL .= ' OR ST_DWithin('.$sPointSQL.', centroid, '.$fSearchDiam.'))';
148 $sSQL .= ' ORDER BY ST_distance('.$sPointSQL.', geometry) ASC limit 1';
149 if (CONST_Debug) var_dump($sSQL);
150 $aPlace = $this->oDB->getRow($sSQL);
151 if (PEAR::IsError($aPlace))
153 failInternalError("Could not determine closest place.", $sSQL, $aPlace);
155 $iPlaceID = $aPlace['place_id'];
156 $iParentPlaceID = $aPlace['parent_place_id'];
157 $bIsInUnitedStates = ($aPlace['calculated_country_code'] == 'us');
160 // Only street found? If it's in the US we can check TIGER data for nearest housenumber
161 if (CONST_Use_US_Tiger_Data && $bIsInUnitedStates && $iMaxRank_orig >= 28 && $iPlaceID && ($aPlace['rank_search'] == 26 || $aPlace['rank_search'] == 27 ))
163 $fSearchDiam = 0.001;
164 $sSQL = 'SELECT place_id,parent_place_id,30 as rank_search, ST_line_locate_point(linegeo,'.$sPointSQL.') as fraction';
165 //if (CONST_Debug) { $sSQL .= ', housenumber, ST_distance('.$sPointSQL.', centroid) as distance, st_y(centroid) as lat, st_x(centroid) as lon'; }
166 $sSQL .= ' FROM location_property_tiger WHERE parent_place_id = '.$iPlaceID;
167 $sSQL .= ' AND ST_DWithin('.$sPointSQL.', linegeo, '.$fSearchDiam.')'; //no centroid anymore in Tiger data, now we have lines
168 $sSQL .= ' ORDER BY ST_distance('.$sPointSQL.', linegeo) ASC limit 1';
172 $sSQL = preg_replace('/limit 1/', 'limit 100', $sSQL);
175 $aAllHouses = $this->oDB->getAll($sSQL);
176 foreach($aAllHouses as $i)
178 echo $i['housenumber'] . ' | ' . $i['distance'] * 1000 . ' | ' . $i['lat'] . ' | ' . $i['lon']. ' | '. "<br>\n";
182 $aPlaceTiger = $this->oDB->getRow($sSQL);
183 if (PEAR::IsError($aPlace))
185 failInternalError("Could not determine closest Tiger place.", $sSQL, $aPlaceTiger);
189 if (CONST_Debug) var_dump('found Tiger place', $aPlaceTiger);
190 $bPlaceIsTiger = true;
191 $aPlace = $aPlaceTiger;
192 $iPlaceID = $aPlaceTiger['place_id'];
193 $iParentPlaceID = $aPlaceTiger['parent_place_id']; // the street
194 $iFraction = $aPlaceTiger['fraction'];
198 // The point we found might be too small - use the address to find what it is a child of
199 if ($iPlaceID && $iMaxRank < 28)
201 if ($aPlace['rank_search'] > 28 && $iParentPlaceID && !$bPlaceIsTiger)
203 $iPlaceID = $iParentPlaceID;
205 $sSQL = 'select address_place_id';
206 $sSQL .= ' FROM place_addressline';
207 $sSQL .= " WHERE place_id = $iPlaceID";
208 $sSQL .= " ORDER BY abs(cached_rank_address - $iMaxRank) asc,cached_rank_address desc,isaddress desc,distance desc";
210 $iPlaceID = $this->oDB->getOne($sSQL);
211 if (PEAR::IsError($iPlaceID))
213 failInternalError("Could not get parent for place.", $sSQL, $iPlaceID);
217 $iPlaceID = $aPlace['place_id'];
221 return array('place_id' => $iPlaceID,
222 'type' => $bPlaceIsTiger ? 'tiger' : 'osm',
223 'fraction' => $bPlaceIsTiger ? $iFraction : -1);