X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/4c7145c2938022d8355f49eb89a5ae1a68217a18..e10d11c6c7a5a96f645b9155a55e56f874ed6042:/utils/warm.php diff --git a/utils/warm.php b/utils/warm.php index 68fa751c..653bcf10 100755 --- a/utils/warm.php +++ b/utils/warm.php @@ -1,4 +1,4 @@ -#!/usr/bin/php -Cq +#!@PHP_BIN@ -Cq 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; @@ -46,7 +46,7 @@ if (!$aResult['search-only']) { ); if ($bVerbose) echo $aDetails['langaddress']."\n"; } else { - echo "."; + echo '.'; } } echo "\n"; @@ -55,7 +55,7 @@ if (!$aResult['search-only']) { if (!$aResult['reverse-only']) { $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) { @@ -64,6 +64,6 @@ if (!$aResult['reverse-only']) { $oGeocode->setQuery($sWord); $aSearchResults = $oGeocode->lookup(); if ($bVerbose) echo $aSearchResults[0]['langaddress']."\n"; - else echo "."; + else echo '.'; } }