2014-02-06 20:50:41 +04:00
|
|
|
<?php
|
|
|
|
|
2016-09-04 04:19:48 +03:00
|
|
|
require_once(CONST_BasePath.'/lib/init-cmd.php');
|
|
|
|
ini_set('memory_limit', '800M');
|
2014-02-06 20:50:41 +04:00
|
|
|
|
2016-09-04 04:19:48 +03:00
|
|
|
$aCMDOptions = array(
|
2017-10-26 22:21:21 +03:00
|
|
|
'Tools to warm nominatim db',
|
2016-09-10 22:10:52 +03:00
|
|
|
array('help', 'h', 0, 1, 0, 0, false, 'Show Help'),
|
|
|
|
array('quiet', 'q', 0, 1, 0, 0, 'bool', 'Quiet output'),
|
|
|
|
array('verbose', 'v', 0, 1, 0, 0, 'bool', 'Verbose output'),
|
|
|
|
array('reverse-only', '', 0, 1, 0, 0, 'bool', 'Warm reverse only'),
|
2017-04-02 18:13:43 +03:00
|
|
|
array('search-only', '', 0, 1, 0, 0, 'bool', 'Warm search only'),
|
2016-09-10 22:10:52 +03:00
|
|
|
);
|
2016-09-04 04:19:48 +03:00
|
|
|
getCmdOpt($_SERVER['argv'], $aCMDOptions, $aResult, true, true);
|
2014-02-06 20:50:41 +04:00
|
|
|
|
2016-09-04 04:19:48 +03:00
|
|
|
require_once(CONST_BasePath.'/lib/log.php');
|
|
|
|
require_once(CONST_BasePath.'/lib/Geocode.php');
|
|
|
|
require_once(CONST_BasePath.'/lib/PlaceLookup.php');
|
|
|
|
require_once(CONST_BasePath.'/lib/ReverseGeocode.php');
|
2014-02-06 20:50:41 +04:00
|
|
|
|
2019-02-24 18:14:36 +03:00
|
|
|
$oDB = new Nominatim\DB();
|
|
|
|
$oDB->connect();
|
2014-02-06 20:50:41 +04:00
|
|
|
|
2016-09-04 04:19:48 +03:00
|
|
|
$bVerbose = $aResult['verbose'];
|
2014-02-06 20:50:41 +04:00
|
|
|
|
2020-01-14 20:24:49 +03:00
|
|
|
function print_results($aResults, $bVerbose)
|
|
|
|
{
|
|
|
|
if ($bVerbose) {
|
|
|
|
if ($aResults && count($aResults)) {
|
|
|
|
echo $aResults[0]['langaddress']."\n";
|
|
|
|
} else {
|
|
|
|
echo "<not found>\n";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
echo '.';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-04 04:19:48 +03:00
|
|
|
if (!$aResult['search-only']) {
|
2016-09-16 03:27:36 +03:00
|
|
|
$oReverseGeocode = new Nominatim\ReverseGeocode($oDB);
|
2016-09-04 04:19:48 +03:00
|
|
|
$oReverseGeocode->setZoom(20);
|
2016-09-16 03:27:36 +03:00
|
|
|
$oPlaceLookup = new Nominatim\PlaceLookup($oDB);
|
2016-09-04 04:19:48 +03:00
|
|
|
$oPlaceLookup->setIncludeAddressDetails(true);
|
|
|
|
$oPlaceLookup->setLanguagePreference(array('en'));
|
2014-02-06 20:50:41 +04:00
|
|
|
|
2017-10-26 22:21:21 +03:00
|
|
|
echo 'Warm reverse: ';
|
2016-09-04 04:19:48 +03:00
|
|
|
if ($bVerbose) echo "\n";
|
2016-09-08 04:16:22 +03:00
|
|
|
for ($i = 0; $i < 1000; $i++) {
|
2016-09-04 04:19:48 +03:00
|
|
|
$fLat = rand(-9000, 9000) / 100;
|
|
|
|
$fLon = rand(-18000, 18000) / 100;
|
|
|
|
if ($bVerbose) echo "$fLat, $fLon = ";
|
2020-01-14 20:24:49 +03:00
|
|
|
|
2019-01-09 00:45:21 +03:00
|
|
|
$oLookup = $oReverseGeocode->lookup($fLat, $fLon);
|
2020-01-14 20:24:49 +03:00
|
|
|
$aSearchResults = $oLookup ? $oPlaceLookup->lookup(array($oLookup->iId => $oLookup)) : null;
|
|
|
|
print_results($aSearchResults, $bVerbose);
|
2016-09-04 04:19:48 +03:00
|
|
|
}
|
|
|
|
echo "\n";
|
|
|
|
}
|
2014-02-06 20:50:41 +04:00
|
|
|
|
2016-09-04 04:19:48 +03:00
|
|
|
if (!$aResult['reverse-only']) {
|
2017-04-02 19:03:17 +03:00
|
|
|
$oGeocode = new Nominatim\Geocode($oDB);
|
2014-02-06 20:50:41 +04:00
|
|
|
|
2017-10-26 22:21:21 +03:00
|
|
|
echo 'Warm search: ';
|
2016-09-04 04:19:48 +03:00
|
|
|
if ($bVerbose) echo "\n";
|
2020-01-14 20:24:49 +03:00
|
|
|
$sSQL = 'SELECT word FROM word WHERE word is not null ORDER BY search_name_count DESC LIMIT 1000';
|
2016-09-08 04:16:22 +03:00
|
|
|
foreach ($oDB->getCol($sSQL) as $sWord) {
|
2016-09-04 04:19:48 +03:00
|
|
|
if ($bVerbose) echo "$sWord = ";
|
2020-01-14 20:24:49 +03:00
|
|
|
|
2016-09-04 04:19:48 +03:00
|
|
|
$oGeocode->setLanguagePreference(array('en'));
|
|
|
|
$oGeocode->setQuery($sWord);
|
|
|
|
$aSearchResults = $oGeocode->lookup();
|
2020-01-14 20:24:49 +03:00
|
|
|
print_results($aSearchResults, $bVerbose);
|
2016-09-04 04:19:48 +03:00
|
|
|
}
|
2020-01-14 20:24:49 +03:00
|
|
|
echo "\n";
|
2016-09-04 04:19:48 +03:00
|
|
|
}
|