]> git.openstreetmap.org Git - nominatim.git/blob - lib/admin/warm.php
f0daab36a039a90f82bc6be6c1f7bddc0b2c113f
[nominatim.git] / lib / admin / warm.php
1 <?php
2 @define('CONST_LibDir', dirname(dirname(__FILE__)));
3
4 require_once(CONST_LibDir.'/init-cmd.php');
5 require_once(CONST_LibDir.'/log.php');
6 require_once(CONST_LibDir.'/Geocode.php');
7 require_once(CONST_LibDir.'/PlaceLookup.php');
8 require_once(CONST_LibDir.'/ReverseGeocode.php');
9
10 ini_set('memory_limit', '800M');
11
12 $aCMDOptions = array(
13                 'Tools to warm nominatim db',
14                 array('help', 'h', 0, 1, 0, 0, false, 'Show Help'),
15                 array('quiet', 'q', 0, 1, 0, 0, 'bool', 'Quiet output'),
16                 array('verbose', 'v', 0, 1, 0, 0, 'bool', 'Verbose output'),
17                 array('reverse-only', '', 0, 1, 0, 0, 'bool', 'Warm reverse only'),
18                 array('search-only', '', 0, 1, 0, 0, 'bool', 'Warm search only'),
19                 array('project-dir', '', 0, 1, 1, 1, 'realpath', 'Base directory of the Nominatim installation (default: .)'),
20                );
21 getCmdOpt($_SERVER['argv'], $aCMDOptions, $aResult, true, true);
22
23 loadSettings($aCMDResult['project-dir'] ?? getcwd());
24
25 $oDB = new Nominatim\DB();
26 $oDB->connect();
27
28 $bVerbose = $aResult['verbose'];
29
30 function print_results($aResults, $bVerbose)
31 {
32     if ($bVerbose) {
33         if ($aResults && count($aResults)) {
34             echo $aResults[0]['langaddress']."\n";
35         } else {
36             echo "<not found>\n";
37         }
38     } else {
39         echo '.';
40     }
41 }
42
43 if (!$aResult['search-only']) {
44     $oReverseGeocode = new Nominatim\ReverseGeocode($oDB);
45     $oReverseGeocode->setZoom(20);
46     $oPlaceLookup = new Nominatim\PlaceLookup($oDB);
47     $oPlaceLookup->setIncludeAddressDetails(true);
48     $oPlaceLookup->setLanguagePreference(array('en'));
49
50     echo 'Warm reverse: ';
51     if ($bVerbose) echo "\n";
52     for ($i = 0; $i < 1000; $i++) {
53         $fLat = rand(-9000, 9000) / 100;
54         $fLon = rand(-18000, 18000) / 100;
55         if ($bVerbose) echo "$fLat, $fLon = ";
56
57         $oLookup = $oReverseGeocode->lookup($fLat, $fLon);
58         $aSearchResults = $oLookup ? $oPlaceLookup->lookup(array($oLookup->iId => $oLookup)) : null;
59         print_results($aSearchResults, $bVerbose);
60     }
61     echo "\n";
62 }
63
64 if (!$aResult['reverse-only']) {
65     $oGeocode = new Nominatim\Geocode($oDB);
66
67     echo 'Warm search: ';
68     if ($bVerbose) echo "\n";
69     $sSQL = 'SELECT word FROM word WHERE word is not null ORDER BY search_name_count DESC LIMIT 1000';
70     foreach ($oDB->getCol($sSQL) as $sWord) {
71         if ($bVerbose) echo "$sWord = ";
72
73         $oGeocode->setLanguagePreference(array('en'));
74         $oGeocode->setQuery($sWord);
75         $aSearchResults = $oGeocode->lookup();
76         print_results($aSearchResults, $bVerbose);
77     }
78     echo "\n";
79 }