X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/38874233816367831c5c30cea0db16d48a3d7016..9e35e5c2b02887e361972ffbb20e65bbba0d02c7:/utils/warm.php diff --git a/utils/warm.php b/utils/warm.php index 89225426..653bcf10 100755 --- a/utils/warm.php +++ b/utils/warm.php @@ -1,4 +1,4 @@ -#!/usr/bin/php -Cq +#!@PHP_BIN@ -Cq setZoom(20); - $oPlaceLookup = new PlaceLookup($oDB); + $oPlaceLookup = new Nominatim\PlaceLookup($oDB); $oPlaceLookup->setIncludeAddressDetails(true); $oPlaceLookup->setLanguagePreference(array('en')); - echo "Warm reverse: "; + echo 'Warm reverse: '; if ($bVerbose) echo "\n"; for ($i = 0; $i < 1000; $i++) { $fLat = rand(-9000, 9000) / 100; @@ -39,20 +39,23 @@ if (!$aResult['search-only']) { if ($bVerbose) echo "$fLat, $fLon = "; $aLookup = $oReverseGeocode->lookup($fLat, $fLon); if ($aLookup && $aLookup['place_id']) { - $aDetails = $oPlaceLookup->lookup((int)$aLookup['place_id'], - $aLookup['type'], $aLookup['fraction']); + $aDetails = $oPlaceLookup->lookup( + (int)$aLookup['place_id'], + $aLookup['type'], + $aLookup['fraction'] + ); if ($bVerbose) echo $aDetails['langaddress']."\n"; } else { - echo "."; + echo '.'; } } echo "\n"; } if (!$aResult['reverse-only']) { - $oGeocode =& new Geocode($oDB); + $oGeocode = new Nominatim\Geocode($oDB); - echo "Warm search: "; + echo 'Warm search: '; if ($bVerbose) echo "\n"; $sSQL = 'select word from word where word is not null order by search_name_count desc limit 1000'; foreach ($oDB->getCol($sSQL) as $sWord) { @@ -61,7 +64,6 @@ if (!$aResult['reverse-only']) { $oGeocode->setQuery($sWord); $aSearchResults = $oGeocode->lookup(); if ($bVerbose) echo $aSearchResults[0]['langaddress']."\n"; - else echo "."; + else echo '.'; } } -